c# - ASP.NET Temporary or Session Variable -
what proper syntax in asp.net 3.5 c# assign textbox value temporary or session variable manipulated (added, subtracted, multiplied, divided) @ different points in application? want add decimal number variable in every instance well.
session["myvalue"] = convert.todecimal(textbox1.text); decimal myvalue = convert.todecimal(session["myvalue"]);
is want?
Comments
Post a Comment