how can i insert array values and retreive in asp.net
Answers were Sorted based on User's Feedback
Answer / senthil
Insert value into array
-----------------------
int[] a = new int[10];
for(int i=0;i<10;i++)
a[i] = i;
Retreive value from array
--------------------------
for (int i = 0; i < a.Length; i++)
Response.Write(a[i].ToString());
Is This Answer Correct ? | 7 Yes | 6 No |
Describe Segmentation With Paging?
what is asp dotnet
What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?
How we can force all the validation controls to run?
What are triggers of an updatepanel?
What are the type of session in Asp.Net
I am using ASP.Net 2.0. I added the following code in button_Click page. but 'PreviousPage' is not taking as a keyword. It throughs an error. Page Poster = this.PreviousPage; TextBox txtNewTest = (TextBox)Poster.FindControl("txtTest"); sDisplay = txtNewTest.Text; Response.Write(sDisplay); The following is the Error Message: 'controls_LoginMain' does not contain a definition for 'PreviousPage'
What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.
Difference between server.Execute and response.redirect ?
5 Answers Accenture, Keane India Ltd,
What does session_start () do?
What is anonymous authentication?
How would you create a permanent cookie?