multiple forms allowed in asp.net 2.0 ?

G

Guest

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
 
S

sp3d2orbit

Posting back to another page:

In Page1.aspx

<asp:Button id="btnButton1" Text="Another Page"
PostBackUrl="Page2.aspx" runat="server" />
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top