Reputation: 4864
I'm working with an ERP project. I want to avoid all postbacks in the page. I decided to use webservices or webmethods to avoid these postback issues. One another advantage i see- Its possible to get the inner html contents of the elements too via javascript.
I'm not using any third party controls in my page. Whats the better method to create a page without postbacks and to make UI so attractive. Is Telrik controls advisable for this purpose?
Upvotes: 1
Views: 1494
Reputation: 372
These are the methods I know of so far:
Basic Assumption: You are using ASP.NET web forms.
The one (I assume) you are using. (Which is good AFAIK.) More details here..
Wrapping the page in an update panel. (Use this with care. Performance overheads may show up if the page is heavy. Decide for yourself.)
Upvotes: 1