/* Drop all non-system stored procs */DECLARE @name VARCHAR(128)DECLARE @SQL VARCHAR(254) SELECT @name = (SELECT TOP 1 [name] FROM sysobjects WHERE [type] = ‘P’ AND... Read More
Add Below Code in web config with file extension: <system.web> <httpHandlers> <add verb="*" path="*.edmx" type="System.Web.HttpForbiddenHandler" /> </httpHandlers> </system.web>... Read More
1. Add Currency Dropdownlist in Master Page with Currency Code and On Page Load Of Master Page: if (!IsPostBack) { if (Session[“currency”] == null) {... Read More
Use for Groupping and sum with datatble Pass Datatable as dttemp var query = from r in dttemp.AsEnumerable() group r by new { StyleDetail_COLOR_NAME =... Read More
When building a string for output to a web page, it’s useful to format any currency value in a human-friendly money format. This is extremely... Read More