|
-
August 16th, 2001, 06:37 AM
#1
WebBroswser Control and Submit
I am implementing off-line ASP supporting browser. I use MS WebBrowser control. I got everything to work except handling submit requests from script. For example:
<SCRIPT language="JavaScript">
function ReloadPage()
{
if (InvalidateOutput())
{
document.forms[0].action="area1.asp";
document.forms[0].submit();
}
}
</SCRIPT>
...
<SELECT name=numericin3Unit onchange="ReloadPage()">
<%=uc.GetUnitsListHTML(hhnumericin3Unit,"Length")%>
</SELECT>
...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|