Different types of Session state management options available with ASP.NET?

ASP.NET provides In-Process and Out-of-Process state management. In-Process stores the session in memory on the web server. This requires the a “sticky-server” (or no load-balancing) so that the user is always reconnected to the same web server. Out-of-Process Session state management stores data in an external data source. The external… Continue reading

An assembly and its benefits and Assembly Versioning

Assemblies are fundamental part of programming in .NET Framework. Assembly performs various functions: It forms a version boundary. The assembly is the smallest versionable unit in the common language runtime; all types and resources in the same assembly are versioned as a unit. The assembly’s manifest describes the version dependencies… Continue reading

Calling Server Code by using javascript

Implementing Client Callbacks Programmatic Without Post-backs in ASP.NET Web Pages How can we call c# server side code by using java-script. Here i am given you an example in which i described that how to call it Use this code in aspx page <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title></title> </head> <script type=”text/javascript”> function ReceiveServerData(arg, context)… Continue reading