Subin Jacob
Subin Jacob

Reputation: 4864

Avoid Postbacks using Webservices and Webmethods

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

Answers (1)

Chukwuemeka
Chukwuemeka

Reputation: 372

These are the methods I know of so far:

Basic Assumption: You are using ASP.NET web forms.

  1. The one (I assume) you are using. (Which is good AFAIK.) More details here..

  2. Wrapping the page in an update panel. (Use this with care. Performance overheads may show up if the page is heavy. Decide for yourself.)

  3. Telerik controls on the other hand, is quite a good tool set if you can part with some money for it. (My humble opinion.)

Upvotes: 1

Related Questions