Welcome to the site. Not sure what your question means.
asp.net with c# application
Collapse
X
-
There won't be any, and if there was it would be just a stub to do javascript.
The C# code is ONLY used in the background for data storage and object manipulation. What gets spit back to the client is HTML and javascript.
You're not creating spamming popups are you?Comment
-
but when i am using this code
System.Diagnost ics.Process.Sta rt("http://www.google.com" );
or
Response.Redire ct("http://www.google.com" );
it is working but the web page opens in existing page, but i need it to be open in a new window and my existing page should be same
please see this
<INPUT type=button value="google" onclick="window .open('http://google.com')">
this is working correctly but i need not to be written in html script
i need only in c# codingComment
-
Originally posted by g7muralibut when i am using this code
System.Diagnost ics.Process.Sta rt("http://www.google.com" );
or
Response.Redire ct("http://www.google.com" );
it is working but the web page opens in existing page, but i need it to be open in a new window and my existing page should be same
please see this
<INPUT type=button value="google" onclick="window .open('http://google.com')">
this is working correctly but i need not to be written in html script
i need only in c# coding
Opening a web page in another window does not require Server Side processing...
Html is a major part of programming a C# web application. You will have to use it in order to display your pages and for things like opening a link in a new browser.
-FrinnyComment
Comment