Tagged Questions
15
votes
6answers
13k views
File uploading in AJAX updatepanel without full postback
I have a update panel, in the update panel I have fileupload control and button control, On button click, I need the file that I have upload in the fileupload control in updatepanel.
Exact scenario, ...
2
votes
1answer
1k views
Is there any workaround for the UpdatePanel + Server.Transfer problem?
I'm trying to use an UpdatePanel in my ASP.NET application. Unfortunately, it seems that I can't do this if I am using Server.Transfer() in my application.
Modifying that component of the application ...
1
vote
1answer
107 views
ASP.NET asynchronous post-back on asp:button click
I am using AJAX in asp:net and am trying to handle a situation where an asp:button triggers both a javascript method and a codebehind c# method. To do this I am using onclick and onClientClick ...