sharing variable between two aspx c sharp files
in my website I have two files home.aspx and tab.aspx with code behind files home.aspx.cs and tab.aspx.cs
I have a table variable in t开发者_JAVA百科ab.aspx.cs which needs to be sent to home.aspx.cs when I click a button on home.aspx
how can this be done?
You could pass it in a query string or session variable.
Need some more specifics for a better answer...
精彩评论