Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
GeneralRe: Copy File From Server With Progress And Completion Pin
Kevin Marois16-Feb-16 3:36
professionalKevin Marois16-Feb-16 3:36 
QuestionIcon on "Dekstop" Pin
Member 1224802815-Feb-16 12:01
Member 1224802815-Feb-16 12:01 
QuestionRe: Icon on "Dekstop" Pin
ZurdoDev15-Feb-16 13:55
professionalZurdoDev15-Feb-16 13:55 
AnswerRe: Icon on "Dekstop" Pin
Gerry Schmitz16-Feb-16 6:05
mveGerry Schmitz16-Feb-16 6:05 
Questionsingle submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 7:19
Sandy Safwat15-Feb-16 7:19 
AnswerRe: single submit button with multiple tabs Pin
Richard Deeming15-Feb-16 8:09
mveRichard Deeming15-Feb-16 8:09 
GeneralRe: single submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 9:19
Sandy Safwat15-Feb-16 9:19 
GeneralRe: single submit button with multiple tabs Pin
Richard Deeming15-Feb-16 9:32
mveRichard Deeming15-Feb-16 9:32 
Yes, a Response.Redirect will throw away all of the page content, and instead tell the browser to load a different page.

You'll need to remove the server-side redirection, and send back some script to redirect the page on the client:
JavaScript
ScriptManager.RegisterStartupScript(this, this.GetType(), "openPDF", "window.open('../../Service/Pages/Page2.aspx');", true);
ScriptManager.RegisterStartupScript(this, this.GetType(), "redirect", "location.assign('../../Service/Pages/Page3.aspx');", true);




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: single submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 10:27
Sandy Safwat15-Feb-16 10:27 
GeneralRe: single submit button with multiple tabs Pin
Richard Deeming15-Feb-16 10:48
mveRichard Deeming15-Feb-16 10:48 
GeneralRe: single submit button with multiple tabs Pin
Mycroft Holmes15-Feb-16 13:39
professionalMycroft Holmes15-Feb-16 13:39 
GeneralRe: single submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 18:38
Sandy Safwat15-Feb-16 18:38 
QuestionGet the name of the machine I'm remoted from... Pin
dandy7215-Feb-16 5:40
dandy7215-Feb-16 5:40 
AnswerRe: Get the name of the machine I'm remoted from... Pin
Gerry Schmitz15-Feb-16 6:28
mveGerry Schmitz15-Feb-16 6:28 
AnswerRe: Get the name of the machine I'm remoted from... Pin
Eddy Vluggen16-Feb-16 11:08
professionalEddy Vluggen16-Feb-16 11:08 
GeneralRe: Get the name of the machine I'm remoted from... Pin
dandy7217-Feb-16 9:47
dandy7217-Feb-16 9:47 
GeneralRe: Get the name of the machine I'm remoted from... Pin
dandy7217-Feb-16 10:12
dandy7217-Feb-16 10:12 
QuestionHow to change glyphicon button on button click of asp.net to show password and when press again to change the icon? Pin
Abbasali Dragon15-Feb-16 3:54
Abbasali Dragon15-Feb-16 3:54 
AnswerRe: How to change glyphicon button on button click of asp.net to show password and when press again to change the icon? Pin
Dave Kreskowiak15-Feb-16 4:36
mveDave Kreskowiak15-Feb-16 4:36 
GeneralRe: How to change glyphicon button on button click of asp.net to show password and when press again to change the icon? Pin
OriginalGriff15-Feb-16 5:02
mveOriginalGriff15-Feb-16 5:02 
GeneralRe: How to change glyphicon button on button click of asp.net to show password and when press again to change the icon? Pin
Dave Kreskowiak15-Feb-16 5:13
mveDave Kreskowiak15-Feb-16 5:13 
QuestionDetermine Is App Is Running Remote Pin
Kevin Marois14-Feb-16 9:32
professionalKevin Marois14-Feb-16 9:32 
AnswerRe: Determine Is App Is Running Remote Pin
Eddy Vluggen14-Feb-16 9:41
professionalEddy Vluggen14-Feb-16 9:41 
GeneralRe: Determine Is App Is Running Remote Pin
Kevin Marois14-Feb-16 10:18
professionalKevin Marois14-Feb-16 10:18 
GeneralRe: Determine Is App Is Running Remote Pin
Kevin Marois14-Feb-16 10:26
professionalKevin Marois14-Feb-16 10:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.