forms

  • Thread starter Thread starter Snake
  • Start date Start date
S

Snake

how to solve problems with not being able to have multiple forms on a single
aspx??

im ex php programmer and really find this concept hard to understand.


thx
 
you can still have multiple forms on a web page; the only rule is that only
one of them can have the runat=server attribute.
 
Yeah, but, the problem is I neemultiple forms and all of those have active
onserver code. Not much sense in having 'normal' forms...
 
In general, the ASP.NET programming model is such that you don't need multiple
forms. Each button can have its own button click handler on the server, so
this will help you determine what was pressed in the client. What are you
trying to do such that you want more than one?

-Brock
DevelopMentor
http://staff.develop.com/ballen
 

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

Back
Top