Reputation: 25
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
Reputation: 521
Either use Asp.net Ajax <UpdatePanel>
tag in your asp.net page:
or use jquery and json calls.
Upvotes: 2