Cookies A cookie is a small file which is stored in the visitor’s hard disk drive. This is helpful for storing small and trivial information. A cookie can have a maximum size of 4KB. The web server creates a cookie, attaches an additional HTTP header to the response, and sends it to the browser. The [...]
Archive for October, 2009
State Management in ASP.NET – Part III
Posted: October 27, 2009 in ASP.NETTags: ASP.NET, state management
Hi friends, When I was searching for some basic ideas of web applications, I just came through an interesting topic, Webservices! Believe me it’s a really interesting and of course an important concept. Hope you will find this concept more interesting than me! What are Webservices and how does it work? Webservices are services exposed [...]
State Management in ASP.NET – Part II
Posted: October 21, 2009 in ASP.NETTags: .Net, ASP.NET, state management
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 [...]
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. [...]
What is an assembly? An Assembly is a logical unit of code Assembly physically exist as DLLs or EXEs One assembly can contain one or more files The constituent files can include any file types like image files, text files etc. along with DLLs or EXEs When you compile your source code by default the [...]
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 [...]
