F
Frank Nero
In my ASP HTML code I have:
<a
href="javascript
opupWin=window.open('Start.asp','StartFromBeg','resizable'
);location.reload();">Click here to start.</a>
How to acomplish the same (creation of the new browser instance) inside C#
code-behind
LinkButton1_Click(object sender, System.EventArgs e)
function?
I know how to do that using Java Script and:
LinkButton1.Attributes.Add( "OnClick", "PopUpWindow();" );
but I was hoping to C# could open new browser without calling Java Script.
Thank you ,
Ryszard Antonczyk
<a
href="javascript

);location.reload();">Click here to start.</a>
How to acomplish the same (creation of the new browser instance) inside C#
code-behind
LinkButton1_Click(object sender, System.EventArgs e)
function?
I know how to do that using Java Script and:
LinkButton1.Attributes.Add( "OnClick", "PopUpWindow();" );
but I was hoping to C# could open new browser without calling Java Script.
Thank you ,
Ryszard Antonczyk