Session in .Net
DATA TRANSFORMATION Def : Data transformation is a process for transferring data between one page to another page. It is also called State Management. Types of State Management 1. Session 2. Query string 3. View State 4. Cookies 5. Application State [1] Session - Session is a State Management technique. Default time in session is 60 seconds. It is used for secure data transfer. How to create session? 1. All sessions is to be create inside the event. session["variable"]=control; variable=>Name, Email, ID, etc control=> Textbox, Label, DropDownList, RadioButton, etc. Session["Email"]=txtemail.Text; 2. How to use(call) session? Session is used in PageLoad. Session always receive data in a form of string.[integer to string] control=(string)Session["variable"]; txtemail.Text=(string)Session["Email"];