Click here to Skip to main content
15,886,712 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
How i can transfer the huge data between the two form in asp.net ?

i want to transfer a variable of string having length varies between 2000 and 5000 from one asp.net web form to another can u please help me?..
Posted
Updated 8-Oct-14 5:35am
v2
Comments
Maciej Los 8-Oct-14 11:46am    
Why? What kind of site requires so many data?
Sergey Alexandrovich Kryukov 8-Oct-14 13:18pm    
Why?!
—SA
babege 9-Oct-14 1:10am    
i required to transfer a string value which is combination of sub strings of 32 character separated by commas. This strings may contains 70 such sub strings or more

Woudn't you store that in the session?
 
Share this answer
 
Use session that will be better choice
insert value into session from source page and use it in target page
like Session["value"]="your value";
in landging page
if(Session["value"]!=null)
{
var usevalue=Session["value"].ToString();
}

hope that work for you
 
Share this answer
 
v4
Comments
babege 9-Oct-14 2:26am    
Thanks for the reply Since it is huge data any other method is there? new window is radwindow

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900