I having a problem with my popup calendar. What I would like to do is focus on a particular textbox after a date is selected and right now it's not doing that. Does anyone have any idea how to do it? here's the code...
[code=vb]
Dim popupScript As String = "<script language='javas cript'>" & _
"window.open('c alendar.aspx?fo rmname=frmFirew orksPe rmitApp.txtdisp laydate', 'calendar', " & _
"'width = 300, height = 200, menubar = no, resizable=yes, scroll=auto');m y_window.focus( )" & _
"</script>"
Private Sub btncal1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles btncal1.Click
Page.RegisterSt artupScript("Po pUPScript", popupScript)
End Sub
[/code]
--------------------------------------------------------------------------------
[code=vb]
Dim popupScript As String = "<script language='javas cript'>" & _
"window.open('c alendar.aspx?fo rmname=frmFirew orksPe rmitApp.txtdisp laydate', 'calendar', " & _
"'width = 300, height = 200, menubar = no, resizable=yes, scroll=auto');m y_window.focus( )" & _
"</script>"
Private Sub btncal1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles btncal1.Click
Page.RegisterSt artupScript("Po pUPScript", popupScript)
End Sub
[/code]
--------------------------------------------------------------------------------
Comment