Debugging for ASP.NET Applications To enable debugging in the project propertiesIn Visual Studio 2005, use the <Project> Property Pages to set project properties for Web application debugging by doing the…
Overloadable Operators ASP.Net C# C# allows user-defined types to overload operators by defining static member functions using the operator keyword. Not all operators can be overloaded.These unary operators can be…
ASP.Net Flexible Deployment Because ASP.NET compiles your Web site on first user request, you can simply copy your application's source code to the production Web server. However, ASP.NET also provides…
What are private assemblies and shared assemblies in .Net A private assembly is used only by a single application, and is stored in that application's install directory (or a subdirectory therein). A shared assembly is one that can be…
Retrieving Query Strings in Javascript The query string is composed of a series of field – value pair. Below is the pattern of query string:field1=value1&field2=value2&field3=value3An URL that contains query…