Click here to Skip to main content
15,910,123 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to create and use assemblies in .net? Pin
Manas Bhardwaj8-Jun-07 3:04
professionalManas Bhardwaj8-Jun-07 3:04 
AnswerRe: How to create and use assemblies in .net? Pin
Nouman Bhatti8-Jun-07 3:18
Nouman Bhatti8-Jun-07 3:18 
AnswerRe: How to create and use assemblies in .net? Pin
Sandeep Akhare8-Jun-07 4:26
Sandeep Akhare8-Jun-07 4:26 
GeneralRe: How to create and use assemblies in .net? Pin
softengg1238-Jun-07 18:19
softengg1238-Jun-07 18:19 
QuestionHow to access session using the instance of another page? Pin
Ashokkuma8-Jun-07 2:10
Ashokkuma8-Jun-07 2:10 
AnswerRe: How to access session using the instance of another page? Pin
Chetan Ranpariya8-Jun-07 2:42
Chetan Ranpariya8-Jun-07 2:42 
GeneralRe: How to access session using the instance of another page? Pin
Ashokkuma8-Jun-07 2:55
Ashokkuma8-Jun-07 2:55 
GeneralRe: How to access session using the instance of another page? Pin
Paddy Boyd8-Jun-07 3:15
Paddy Boyd8-Jun-07 3:15 
GeneralRe: How to access session using the instance of another page? Pin
Nouman Bhatti8-Jun-07 3:23
Nouman Bhatti8-Jun-07 3:23 
AnswerRe: How to access session using the instance of another page? Pin
Guffa8-Jun-07 8:24
Guffa8-Jun-07 8:24 
GeneralRe: How to access session using the instance of another page? Pin
Ashokkuma10-Jun-07 21:39
Ashokkuma10-Jun-07 21:39 
QuestionData formatting expression in Datagrid........................ Pin
Member 38798818-Jun-07 1:56
Member 38798818-Jun-07 1:56 
AnswerRe: Data formatting expression in Datagrid........................ Pin
Nouman Bhatti8-Jun-07 3:24
Nouman Bhatti8-Jun-07 3:24 
Questionhow to get the xml from dataset Pin
sooreeagt8-Jun-07 1:12
sooreeagt8-Jun-07 1:12 
AnswerRe: how to get the xml from dataset Pin
Sylvester george8-Jun-07 1:35
Sylvester george8-Jun-07 1:35 
AnswerRe: how to get the xml from dataset Pin
Nouman Bhatti8-Jun-07 3:29
Nouman Bhatti8-Jun-07 3:29 
Questionopenenig document in different window Pin
Sandeep Akhare8-Jun-07 0:14
Sandeep Akhare8-Jun-07 0:14 
AnswerRe: openenig document in different window [modified] Pin
Chetan Ranpariya8-Jun-07 0:22
Chetan Ranpariya8-Jun-07 0:22 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 0:41
Sandeep Akhare8-Jun-07 0:41 
GeneralRe: openenig document in different window Pin
Chetan Ranpariya8-Jun-07 0:58
Chetan Ranpariya8-Jun-07 0:58 
AnswerRe: openenig document in different window Pin
badgrs8-Jun-07 0:22
badgrs8-Jun-07 0:22 
AnswerRe: openenig document in different window [modified] Pin
Tom John8-Jun-07 0:24
Tom John8-Jun-07 0:24 
Are you trying to do this after a postback or from a regular link?

Regular link:

<a href="http://www.codeproject.com" target="codeProjectWindow">The Code Project</a>

Code Behind:

You'll need to register a client startup script to open the new window once the page has loaded:

<code>
Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click

Page.ClientScript.RegisterStartupScript(Me.GetType, "codeProjectRedirect", "window.open('http://www.codeproject.com')", True)

End Sub
<code>

Hope this helps

Tom




-- modified at 13:41 Friday 8th June, 2007
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 0:39
Sandeep Akhare8-Jun-07 0:39 
GeneralRe: openenig document in different window Pin
Venkatesh Mookkan8-Jun-07 1:43
Venkatesh Mookkan8-Jun-07 1:43 
GeneralRe: openenig document in different window Pin
Sandeep Akhare8-Jun-07 4:23
Sandeep Akhare8-Jun-07 4:23 

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.