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

ASP.NET

 
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 
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 
ok Here is how far I have gotten. Please let me know I am so close!

Javascript:

function openOrange(selObj,restore){
var theFullString = selObj.options[selObj.selectedIndex].value;
if (restore) selObj.selectedIndex=0;
var theLength = theFullString.length;
var endPos = theFullString.lastIndexOf("~");
var theUrl, theTarget, theParent;
if (endPos > 0) {theUrl = theFullString.substring(0,endPos);}
else {theUrl = theFullString;}
endPos++
window.open(theUrl);
}


PageLoad event:


Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
DropDownList1.Attributes.Add("onchange", "javascript:openOrange(this,1)")
End Sub

Got it to work finding some javacode for a jumpmenu. Anyone know how to clean it up?
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 
AnswerRe: Disable Save As in Internet Explorer Pin
Michael Sync12-Aug-07 4:36
Michael Sync12-Aug-07 4:36 
GeneralRe: Disable Save As in Internet Explorer Pin
Blumen12-Aug-07 20:00
Blumen12-Aug-07 20:00 
GeneralRe: Disable Save As in Internet Explorer Pin
Michael Sync12-Aug-07 20:48
Michael Sync12-Aug-07 20:48 

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.