newperson2008
New Member
I have a dropdownlist-control in my project that is binded with bij a DataView. Under IE 6.0 it works perfect but when I open it under Netscape 4.76 I get the following javascript-error:<BR>JavaScript Error: url, line 43<BR>theform has no properties.<BR><BR>When I look in the sourcecode and search for line 43 it gives the following code:<BR><BR><script language="javascript"><BR><!--<BR>function _doPostback(eventTarget,eventArgument)<BR>{<BR>var theform = document._ct14_frmSearch;<BR>theform._EVENTTARGET.Value = http://aspmessageboard.com/archive/index.php/eventTarget;<BR>theform_EVENENTARGUMENT.value = eventArgument;<BR>theform.submit();<BR>}<BR>//--><BR><BR>It is a piece of javascript that ASP.Net produces by itself.<BR><BR>Does anybody know or heard from this problem and maybe have a solution for it.<BR><BR>thanx<BR>It is looking for a form with an ID of _ct14_frmSearch.<BR><BR>-DougThe form is named frmSearch and the ID also. ASP.Net renames it to _ct14_frmSearch. It is and ascx dynamic loaded in the aspx. Has that something to do with it?