QueryString This is the most simple and efficient way of maintaining information across requests. The information you want to maintain will be sent along with the URL. A typical URL with a query string looks like www.somewebsite.com/search.aspx?query=india The URL part which comes after the ? symbol is called a QueryString. QueryString has two parts, a [...]
Posts Tagged ‘.Net’
State Management in ASP.NET – Part II
Posted: October 21, 2009 in ASP.NETTags: .Net, ASP.NET, state management
State Management in ASP.NET – Part I
Posted: October 20, 2009 in ASP.NETTags: .Net, ASP.NET, state management
HTTP Protocol and the Need for State Management Techniques Hi friends, in this blog I would like to tell something about state management techniques used in ASP.NET which are very important in building web applications. The whole topic is very lengthy, so the contents are divided into different parts for easy reading. Hope everyone will [...]
Managed and Unmanaged Code
Posted: October 19, 2009 in .Net FrameworkTags: .Net, .Net Framework, managed code, unmanaged code
Managed Code is what VB.NET and C# compilers create. It compiles to Intermediate Language (IL), not to machine code that could run directly on your computer. The IL is kept in a file called an assembly, along with metadata that describes the classes, methods, and attributes (such as security requirements) of the code you’ve created. [...]
About .NET Framework
Posted: October 12, 2009 in .Net FrameworkTags: .Net, .Net Framework, framework
The basic components of .NET platform (framework) are: 1 . .Net Applications (Win Forms,Web Applications,Web Services) 2. Data(ADO.Net) and XML Library 3. FrameWork Class Library(FCL) (IO,Streams,Sockets,Security,Reflection,UI) 4. Common Language Runtime(CLR) (Debugger,Type Checker,JITer,GC) 5.Operating System (Windows,Linux,UNIX,Macintosh,etc.,) Common Language Runtime (CLR): The most important part of the .NET Framework is the .Net Common Language Runtime (CLR) also called .Net Runtime [...]
