Sagi Gamil
Sagi Gamil

Reputation: 25

How to disable posting back entire page

I'm working on site in asp.net. the site present profile image in base64. When clicking on button or calling webmethod, the entire page posting page including the images and it is taking too long. there is a way to posting only what I need to post and refreshing the page? I do not want to use pageMethod, there is another way?

Upvotes: 0

Views: 52

Answers (1)

YazX
YazX

Reputation: 521

Either use Asp.net Ajax <UpdatePanel> tag in your asp.net page:

Introduction to Asp.net Ajax

or use jquery and json calls.

Upvotes: 2

Related Questions