J
Jason Hartsoe
I get the error:
Sys.WebForms.PageRequestManagerParserErrorException: The message received
from the server could not be parsed. Common causes for this error are when
the response is modified by calls to Response.Write...when i postback to the
page. The problem is, i need to write some dynamic javascript on postback
and make sure it's rendered to the page.
I'm setting up Omniture analytics for my site,
<script language="JavaScript" type="text/javascript"><!--
s.pageName = "Home"
s.channel = "Home"
s.hier1 = "Home"
s.prop1="Something Dynamic Should Go Here"
var s_code = s.t(); if (s_code) document.write(s_code)//--></script>
I product an array of products to fill the "s.prop" variables. How can I
get them from the codebehind, to the s.prop1="something, s.prop2="something
more" and so on. Is there anyway to write from codebehind into the place
where s.prop starts? I tried response.write...but it fails after postback.
Thanks!
Sys.WebForms.PageRequestManagerParserErrorException: The message received
from the server could not be parsed. Common causes for this error are when
the response is modified by calls to Response.Write...when i postback to the
page. The problem is, i need to write some dynamic javascript on postback
and make sure it's rendered to the page.
I'm setting up Omniture analytics for my site,
<script language="JavaScript" type="text/javascript"><!--
s.pageName = "Home"
s.channel = "Home"
s.hier1 = "Home"
s.prop1="Something Dynamic Should Go Here"
var s_code = s.t(); if (s_code) document.write(s_code)//--></script>
I product an array of products to fill the "s.prop" variables. How can I
get them from the codebehind, to the s.prop1="something, s.prop2="something
more" and so on. Is there anyway to write from codebehind into the place
where s.prop starts? I tried response.write...but it fails after postback.
Thanks!