Here is the problem im having. I have 5 buttons on my form that appear next to each other (horizontal). 3 out of the 5 buttons had to be put in an update panel b/c these buttons have to do AsyncPostBack, the other 2 buttons need to be outside to do a postback. Everything works the way I would like accept that all the buttons dont appear on the same line. Is there anything I can do put get these 5 buttons to appear on the same line, given the different functionality of these buttons?
Share
The UpdatePanel renders a
<div>you need to style thisdivso that that it displaysinlineNotice theStyle="display:inline"in the following code. There’s other ways to accomplish this depending on your layout but this is the most straightforward.