Click here to Skip to main content
15,887,135 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRemembering Password in Asp.net Pin
sandeep kumar pundhir11-Aug-07 16:57
sandeep kumar pundhir11-Aug-07 16:57 
AnswerRe: Remembering Password in Asp.net Pin
Guffa11-Aug-07 17:45
Guffa11-Aug-07 17:45 
GeneralRe: Remembering Password in Asp.net Pin
Mic Mathi11-Aug-07 23:01
Mic Mathi11-Aug-07 23:01 
AnswerRe: Remembering Password in Asp.net Pin
Guffa12-Aug-07 2:29
Guffa12-Aug-07 2:29 
Questionput a text box on a jpeg image Pin
Sarfaraj Ahmed11-Aug-07 16:12
Sarfaraj Ahmed11-Aug-07 16:12 
AnswerRe: put a text box on a jpeg image Pin
Guffa11-Aug-07 17:42
Guffa11-Aug-07 17:42 
QuestionNeed help with opening new ie window from a databound DropDownList Pin
bnbdnb11-Aug-07 12:00
bnbdnb11-Aug-07 12:00 
AnswerRe: Need help with opening new ie window from a databound DropDownList Pin
Guffa11-Aug-07 14:05
Guffa11-Aug-07 14:05 
To do exactly what you are asking for is (AFAIK) impossible using only Javascript. To open a new window in a specific program (in this case IE) requires you to run an executable on the client computer.

To open a new browser window, however, is easy:

onchange="window.open('PageToOpen.aspx','_blank');"

You can add the value of the selected item as a querystring:

onchange="window.open('PageToOpen.aspx?someNiftyName='+this.options[this.selectedIndex].value,'_blank');"

You also can set the onchange attribute from code behind:

TheDropDownListControl.Attributes("onchange") = "window.open('PageToOpen.aspx','_blank');"


---
single minded; short sighted; long gone;

GeneralRe: Need help with opening new ie window from a databound DropDownList Pin
bnbdnb11-Aug-07 14:50
bnbdnb11-Aug-07 14:50 
AnswerRe: Need help with opening new ie window from a databound DropDownList Pin
Guffa11-Aug-07 17:39
Guffa11-Aug-07 17:39 
GeneralRe: Need help with opening new ie window from a databound DropDownList [modified] Pin
bnbdnb11-Aug-07 18:20
bnbdnb11-Aug-07 18:20 
QuestionGAME in ASP .NET Pin
it_stud_200611-Aug-07 3:54
it_stud_200611-Aug-07 3:54 
QuestionThaland Google Map in English while implementing in asp.net c# Pin
harryforum11-Aug-07 2:41
harryforum11-Aug-07 2:41 
QuestionHelp Documents Pin
Brendan Vogt11-Aug-07 2:12
Brendan Vogt11-Aug-07 2:12 
QuestionSilly little thing with GridView and DetailsView Pin
DarynRoberts11-Aug-07 0:30
DarynRoberts11-Aug-07 0:30 
QuestionMultiple File Uploading without inputFile control (urgent!) Pin
Milind Panchal10-Aug-07 23:38
Milind Panchal10-Aug-07 23:38 
AnswerRe: Multiple File Uploading without inputFile control (urgent!) Pin
Michael Sync12-Aug-07 4:55
Michael Sync12-Aug-07 4:55 
GeneralProblem in CheckBoxList Pin
ballameharmurali10-Aug-07 23:17
ballameharmurali10-Aug-07 23:17 
GeneralRe: Problem in CheckBoxList Pin
Milind Panchal10-Aug-07 23:24
Milind Panchal10-Aug-07 23:24 
GeneralRe: Problem in CheckBoxList Pin
ballameharmurali11-Aug-07 1:26
ballameharmurali11-Aug-07 1:26 
Questioncasting problem Pin
ksaw12310-Aug-07 21:37
ksaw12310-Aug-07 21:37 
AnswerRe: casting problem Pin
Guffa11-Aug-07 2:34
Guffa11-Aug-07 2:34 
QuestionFile Uploader ActiveX control Pin
Milind Panchal10-Aug-07 21:28
Milind Panchal10-Aug-07 21:28 
AnswerRe: File Uploader ActiveX control Pin
Michael Sync12-Aug-07 4:51
Michael Sync12-Aug-07 4:51 
QuestionDisable Save As in Internet Explorer Pin
Blumen10-Aug-07 20:28
Blumen10-Aug-07 20:28 

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.