开发者

To bind value in TextBox field of GridView

开发者 https://www.devze.com 2023-02-02 05:46 出处:网络
I have one form in which G开发者_如何学GoridView contains 1 \"rate\" field in TextBox. The rate field is not added to database.

I have one form in which G开发者_如何学GoridView contains 1 "rate" field in TextBox. The rate field is not added to database. Now on another form (report generation), in GridView i want to show the value of the rate field which is in first form, How can i do this? Waiting for reply..


You can store it as a session variable if you don't want to save it anywhere.

Session["rate"] = rate;

and to read it:

rate = Session["rate"];
0

精彩评论

暂无评论...
验证码 换一张
取 消