The problem is , every time i do a postback my variable “value” doesn’t keep it’s previous value, and always the dictionary is empty. It doesn’t have any previous saved data. How can i make it to save data ?
this is the code :
public partial class MyCart : System.Web.UI.Page
{
public Dictionary<string, string> value = new Dictionary<string, string>();
protected void Page_Load(object sender, EventArgs e)
{
TextBox textbox = new TextBox();
textbox.TextChanged += textbox_TextChanged;
textbox.ID = "textbox" + p.IDProduct.ToString();
Button button = new Button();
}
void textbox_TextChanged(object sender, EventArgs e)
{
value.Add(((TextBox)sender).ID, ((TextBox)sender).Text);
}
}
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
The global variable are recreated on Postback you probably need to put the variable in ViewState for keep its data between postbacks.
If data is small the its fine with ViewState but if data is large then your might need to think an alternative medium of storage could be database.
To do it with ViewState you would need something like.
public Dictionary<string, string> value = new Dictionary<string, string>();
protected void Page_Load(object sender, EventArgs e)
{
if(ViewState["valDic"] != null)
value = (Dictionary<string, string>)ViewState["valDic"];
TextBox textbox = new TextBox();
textbox.TextChanged += textbox_TextChanged;
textbox.ID = "textbox" + p.IDProduct.ToString();
Button button = new Button();
}
void textbox_TextChanged(object sender, EventArgs e)
{
value.Add(((TextBox)sender).ID, ((TextBox)sender).Text);
ViewState["valDic"] = value;
}
View state is the method that the ASP.NET page framework uses to
preserve page and control values between round trips. When the HTML
markup for the page is rendered, the current state of the page and
values that must be retained during postback are serialized into
base64-encoded strings. This information is then put into the view
state hidden field or fields, MSDN.
Method 2
After postbacks the variables lose the value as they are recreated..You can depend HTML hidden inputs..
Markup:
<input id="Hidden1" type="hidden" runat="server" value=""/>
Code behind:
Hidden1.value="something";
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0