The Code below has : - main.aspx page which has a textbox and a link to select the catergoryname - main2.aspx page has the actual selection criteria of the Categoryname to be selected from dropdownlist - On selection of the data from the dropdown the data should be send back to the main.aspx [bold]Step 1:main.aspx[/bold]
Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged Try Dim strjscript As String = " <SCRIPT language="" javascript?"
strjscript = strjscript & "</SCRIPT> " Literal1.Text = strjscript Catch ex As Exception Response.Write(ex.Message) End Try End Sub blog comments powered by Disqus