ASP / ActiveX Crashes Browser
HI,
I have created a web page that has som date text boxes on it, with a calendar button to bring up a calendar on user click. On my PC the code works fine. When i click on the calendar icon the calendar comes up and i press a date and then click the update button. The date in the text box on the page below the modal calendar window than updates to reflect the date chosen
I have also got my friend to try it on his pcs, and when i press the update button on the calendar, instead of the just the modal calendar window closing, it closes all other open IE Windows. All ActiveX controls have been enabled and security setting is on low.
I have included the code below.
If anyone could help, i would appreciate it.
cheers
Matho
<SCRIPT LANGUAGE=VBSCRIPT>
Sub window_onunload
window.returnvalue = formatdatetime(document.all.calendar1.value,2)
end sub
</SCRIPT>
<OBJECT id=Calendar1 style="LEFT: 0px; WIDTH: 289px; TOP: 0px; HEIGHT: 198px"
classid=clsid:8E27C92B-1264-101C-8A2F-040224009C02 width=289 height=198 VIEWASTEXT class=Calendar>
<PARAM NAME="_Version" VALUE="524288">
<PARAM NAME="_ExtentX" VALUE="7646">
<PARAM NAME="_ExtentY" VALUE="5239">
<PARAM NAME="_StockProps" VALUE="1">
<PARAM NAME="BackColor" VALUE="-2147483633">
<PARAM NAME="Year" VALUE="<%=year(now())%>">
<PARAM NAME="Month" VALUE="<%=month(now())%>">
<PARAM NAME="Day" VALUE="<%=day(now())%>">
<PARAM NAME="DayLength" VALUE="1">
<PARAM NAME="MonthLength" VALUE="2">
<PARAM NAME="DayFontColor" VALUE="0">
<PARAM NAME="FirstDay" VALUE="1">
<PARAM NAME="GridCellEffect" VALUE="1">
<PARAM NAME="GridFontColor" VALUE="10485760">
<PARAM NAME="GridLinesColor" VALUE="-2147483632">
<PARAM NAME="ShowDateSelectors" VALUE="-1">
<PARAM NAME="ShowDays" VALUE="-1">
<PARAM NAME="ShowHorizontalGrid" VALUE="-1">
<PARAM NAME="ShowTitle" VALUE="-1">
<PARAM NAME="ShowVerticalGrid" VALUE="-1">
<PARAM NAME="TitleFontColor" VALUE="10485760">
<PARAM NAME="ValueIsNull" VALUE="0">
</OBJECT>
<BR>
<center><INPUT type=button value="Update Date" onClick=window.close>
|