i am wondering whether this is now available in asp.net 2.0? i couldn't get
any comfirmation from this newsgroup reading. thanks.
1. multiple forms (all with onserver tag) in one page
2. postback to other pages. it said that postbackURL() is now provided for
this
3. array of checkbox, etc using the same id - this is very useful for
datagrid (w3c feature)
i struggled with above in asp.net 1.1 and wondering the changes in 2.0
Scott Allen - 26 Oct 2005 18:49 GMT
You can still have just one server side form (a form with
runat="server"), but there is an option to post to another page. I
wrote about the feature here: http://odetocode.com/Articles/421.aspx
--
Scott
http://www.OdeToCode.com/blogs/scott/
>i am wondering whether this is now available in asp.net 2.0? i couldn't get
>any comfirmation from this newsgroup reading. thanks.
[quoted text clipped - 6 lines]
>
>i struggled with above in asp.net 1.1 and wondering the changes in 2.0
sp3d2orbit - 26 Oct 2005 22:03 GMT
Posting back to another page:
In Page1.aspx
<asp:Button id="btnButton1" Text="Another Page"
PostBackUrl="Page2.aspx" runat="server" />