top 10 problems in asp.net

  • Thread starter Thread starter Daniel Bauke
  • Start date Start date
D

Daniel Bauke

i remember i found about half a year ago an article describing top 10
problems with asp.net. one of them was that there can be only one <form
runat="server"> on a page, but i can't remember more to find it in google.

could somebody remind me that?
 
Daniel said:
i remember i found about half a year ago an article describing top 10
problems with asp.net. one of them was that there can be only one <form
runat="server"> on a page, but i can't remember more to find it in google.

could somebody remind me that?

Hello Daniel,

Don't know about the article, but the problem you're mentioning
is no problem at all. I see many questions on this group that
demonstrate that many ASP.NET users just do not yet understand
the power of ASP.NET. It's not just a new environment/language,
it's a new way of thinking for developing web apps too.

One of the big improvements in ASP.NET, compared to f.i. old fashioned
ASP is that it provides a framework for easily creating re-usable
user interface components. So instead of making a page with
several forms, you create a page with several user controls on it.

Best regards,

Eric
 
Back
Top