开发者

ASP.NET dynamic controls data exchange in postback

Please excuse me for a probably lo开发者_运维问答w quality of this question, since I'm not a web dev, so I possibly don't now some obvious things and don't know what to Google for. I think problem must have some simple solution, but I'm struggling with it for two days now, so I feel myself pretty stupid :-).

I have a custom control which is a set of checkboxes which are added dynamically based on a property which is set in OnLoad event of a page. I have two such controls on a page and second control items should be based on items selected in first control.

The problem is, I can't figure out, how to catch on autopostback which boxes were selected in first control before second contol is constructed to pass this data to it?


Take a look at this. http://forums.asp.net/t/1440174.aspx

Since your building them dynamically, they are not as easy to find as webforms would like to be, if you added them to the page and wired up events and such.

Your going to look at the Request.Forms list, and search thru it for any controls you want. I believe checkboxes are like radio buttons, they only return if they are checked, which is good, cause you want to know which ones were checked.


I've used same solution as in the accepted answer for this question: Dynamically Change User Control in ASP.Net , just need to assign an unique id for each dynamically created CheckBox in custom control. Not as clean solution as I want but at least it works.


You can save the data in the ViewState, QueryString or as Session before moving to the next page and you can do modifications based on it.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜