|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
SelectedIndexChanged Event opens new browserusually i can open a new browser by adding a handler like below but i want to do this from a drop down list. i know this is easy in WinForms but, im on Asp.Web. and ive tried 'onchange' 'onblur' 'onpropertychange' but i cant get a new browser window to open up. any ideas here? thanks rik --need to do this from a SelectedIndexChanged Event of a DropDownList box: --normally do this from a button click Private Sub btnOk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOkSave.Click btnOk.Attributes.Add("onclick", "window.open('ConditionConfiguration.aspx');") End Sub ********************************************************************** Sent via Fuzzy Software @ http://www.fuzzysoftware.com/ Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources... |
|||||||||||||||||||||||