Post subject: VB / programming asp.net query
PostPosted:Mon Feb 05, 2007 9:43 am
I shall post this here as i know a few of you are keen web developers or well I guess they might, I think a few of you have done some VB, programming and web developing isnt my specilisational skills (although im trying oto learn it all fast)
basically i have a dropdownlist on my companies intranet site, now I want the dropdown list to redirect based on the answer, the list if you select a document like "BLANK MEMO" it opens up a blank memo document which I have in my web folder or alternatively if you say selected google you could redirect to goodle.
so on this I have made a protected sub and used some code which I foudn since my version was slightly off but have edited accordingly..
it goes as so..
I ran debugging and traced it but it appears not to acctally execute when it is selected.
Any ideas at all?
basically i have a dropdownlist on my companies intranet site, now I want the dropdown list to redirect based on the answer, the list if you select a document like "BLANK MEMO" it opens up a blank memo document which I have in my web folder or alternatively if you say selected google you could redirect to goodle.
so on this I have made a protected sub and used some code which I foudn since my version was slightly off but have edited accordingly..
it goes as so..
Code: Select all
Now When the option is selected, nothing happens.Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
Response.BufferOutput = True
If DropDownList1.SelectedItem.Text = "Telephone list" Then
Response.Redirect("http://www.google.com")
ElseIf DropDownList1.SelectedItem.Text = "Blank Memo" Then
Response.Redirect("memo.doc")
ElseIf DropDownList1.SelectedItem.Text = "Blank Fax Document" Then
Response.Redirect("fax.doc")
ElseIf DropDownList1.SelectedItem.Text = "3" Then
Response.Redirect("http://www.microsoft.com/gohere/look_esp.htm")
End If
End Sub
I ran debugging and traced it but it appears not to acctally execute when it is selected.
Any ideas at all?