javascript error while using ASP.Net form

M

Manoj Mathew

I get a javascript error while loading an ASP.Net page. The page contains a
form to which ASP.Net inserts a name which has ":" charachter. The
javascript generated by ASP.Net gives an error of an Expected ";". The
javascript code generated is

function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1)
{
theform = document.forms["_ctl0:_ctl0:MediaPartnerForm136"];
}
else
{
theform = document._ctl0:_ctl0:MediaPartnerForm136;
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}


The form has the attributes

<form name="_ctl0:_ctl0:MediaPartnerForm136" method="post"
action="lightbox.aspx" id="_ctl0__ctl0_MediaPartnerForm136">

Can someone give me some insight on this if this can be handled?


Manoj
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top