Page1.aspx.cs and Page1.aspx
In Page.aspx.cs : string name1 = "License";
In Page1.aspx:
How to display the name from .aspx.cs to .aspx?
i.e. name1 must be in id1 textbox.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Santhosh NPosted Dec 15, 2010, 9:24 AM
Just put this code in aspx.cs file...
id1.Text = name1;
Koteswararao MallisettiPosted Dec 15, 2010, 8:39 AM