Hey guys I have a post back url that I using to link to a webpage of maps from a database but instead of opening the link in a new windows it just opens it in the same windows pls help I am a rockie
code
Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Button1.PostBackUrl = "WebMap/default.asp?map=1¶ms=type:gdo!connection:Map%20Data%20SQL!table:Building!field:BldgNumber!value:" & DropDownList1.SelectedValue
End Sub
Protected Sub Button1_Click1(ByVal sender As Object, ByVal e As System.EventArgs)
End Sub
Protected Sub Department_Selecting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.SqlDataSourceSelectingEventArgs)
End Sub
Protected Sub DropDownList2_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Button2.PostBackUrl = "Aworking/default.asp?map=1¶ms=type:gdo!connection:Map%20Data%20SQL!table:DeptInfo!field:RoomLocID!value:" & DropDownList2.SelectedValue
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs)
End Sub