We are plannning to use Ajax in our ASP.net project. However, we still want the member panel of our web site to work in all browsers. We have decided not to use Ajax in some forms where browser independence is must.
I am now confused with whether we should use ASP.NET controls or HTML controls or both?
I have two questions:
- Are there any problems that I might face using either of approach?
- Also which one is better considering efficiency and performance?
If you can use HTML - it is always better - as it is much faster. The use of ASP controls should work on all browsers as far as I know, but it less efficient. Better create a small example and test it on some browsers before you decide.
(I've used ajax on both explorer and Firefox and it works)