Click here to Skip to main content
15,887,434 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: CreateObject Not Working in VBScript Pin
Manas Bhardwaj23-Sep-09 22:21
professionalManas Bhardwaj23-Sep-09 22:21 
Questionhow tochange the order of gride view colunm . Pin
rinku soni 2323-Sep-09 21:59
rinku soni 2323-Sep-09 21:59 
AnswerRe: how tochange the order of gride view colunm . Pin
Vimalsoft(Pty) Ltd23-Sep-09 22:03
professionalVimalsoft(Pty) Ltd23-Sep-09 22:03 
QuestionViewstate Pin
prasadnjoshi23-Sep-09 21:53
prasadnjoshi23-Sep-09 21:53 
AnswerRe: Viewstate Pin
Abhijit Jana23-Sep-09 21:54
professionalAbhijit Jana23-Sep-09 21:54 
AnswerRe: Viewstate Pin
Christian Graus23-Sep-09 23:27
protectorChristian Graus23-Sep-09 23:27 
QuestionViewstate Pin
prasadnjoshi23-Sep-09 21:52
prasadnjoshi23-Sep-09 21:52 
AnswerRe: Viewstate Pin
Abhijit Jana23-Sep-09 21:58
professionalAbhijit Jana23-Sep-09 21:58 
Querystring is derved from the URL

Example: http://test.com/User.aspx?useid=123

And you need to retreive it on User.aspx as,
string UserID=Request.QueryString["userid"].ToString();

View State is one of the most important and useful client side state management mechanism. It can store the page value at the time of post back (Sending and Receiving information from Server) of your page. ASP.NET pages provide the ViewState property as a built-in structure for automatically storing values between multiple requests for the same page.

Example:

If you want to add one variable in View State,

ViewState["Var"]=Count;


For Retrieving information from View State
string Test=ViewState["TestVal"];


Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.

Questionsql Pin
ritasaumya23-Sep-09 21:46
ritasaumya23-Sep-09 21:46 
AnswerRe: sql Pin
Vimalsoft(Pty) Ltd23-Sep-09 22:12
professionalVimalsoft(Pty) Ltd23-Sep-09 22:12 
AnswerRe: sql Pin
Manas Bhardwaj23-Sep-09 22:24
professionalManas Bhardwaj23-Sep-09 22:24 
AnswerRe: sql Pin
Christian Graus23-Sep-09 23:29
protectorChristian Graus23-Sep-09 23:29 
QuestionValidation Without Page Refresh . Pin
Priyagdpl23-Sep-09 21:36
Priyagdpl23-Sep-09 21:36 
AnswerRe: Validation Without Page Refresh . Pin
Abhijit Jana23-Sep-09 21:52
professionalAbhijit Jana23-Sep-09 21:52 
AnswerRe: Validation Without Page Refresh . Pin
Nisha Agrawal23-Sep-09 21:55
Nisha Agrawal23-Sep-09 21:55 
QuestionProblem in firing event in firefox and google crome Pin
S.Aijaz23-Sep-09 20:44
S.Aijaz23-Sep-09 20:44 
QuestionContext menu in extended gridview is not working in Firefox [modified] Pin
Saritha Palekula23-Sep-09 20:17
Saritha Palekula23-Sep-09 20:17 
AnswerRe: Context menu in extended gridview is not working in Firefox Pin
sashidhar23-Sep-09 20:56
sashidhar23-Sep-09 20:56 
AnswerRe: Context menu in extended gridview is not working in Firefox Pin
Nisha Agrawal23-Sep-09 21:21
Nisha Agrawal23-Sep-09 21:21 
GeneralRe: Context menu in extended gridview is not working in Firefox Pin
Saritha Palekula23-Sep-09 21:34
Saritha Palekula23-Sep-09 21:34 
AnswerRe: Context menu in extended gridview is not working in Firefox Pin
Nisha Agrawal23-Sep-09 22:44
Nisha Agrawal23-Sep-09 22:44 
QuestionGlobal.ajax Pin
sris 42623-Sep-09 19:12
sris 42623-Sep-09 19:12 
AnswerRe: Global.ajax Pin
sashidhar23-Sep-09 19:37
sashidhar23-Sep-09 19:37 
AnswerRe: Global.ajax Pin
N a v a n e e t h23-Sep-09 19:56
N a v a n e e t h23-Sep-09 19:56 
GeneralRe: Global.ajax Pin
sris 42623-Sep-09 20:12
sris 42623-Sep-09 20:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.