开发者

To bind value in TextBox field of GridView

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜