views:

189

answers:

0

Hi, I have a asp.net web page with a drop down list (RadioButtonList), one of the list item in that list is long text so it wraps to the next line (the list is nested inside a table). I have a auto post back enabled for the list and i handle selection change event. Now if I select that list item with the long text, the selection change event is triggered and in the event handling method, i find that the list's selected value is null. This happened in firefox but worked in IE 6. After debugging I found that in the "get" posted variables, (the query string), it adds two new line characters (%0d%0a%0d%0a) while the IE only adds %0d%0d%0a) these are used for the wrapping of the text that happens in the list...

please help