Error:Permission denied in IExploer with XP service pack 2

J

Jordan

When I run this code in IExploer with XP sp2 and click on LinkButton
javascript bellow fire error: Error:permission error on row
!!!!!!!!!!!!.
And same code work fine after comment row **********.

It's work with Opera and FireFox.

Code behind

public class test : Page
{
protected LinkButton LinkButton1;

private void Page_Load(object sender, EventArgs e)
{
if(vPSession.User == null)
{
if(Request.Params["user"]!= null)
{
vPSession.User = new
User(Convert.ToInt64(Request.Params["user"]));
Response.Redirect(Request.Url.AbsolutePath);
}
else
{
string queryStr = "?";
queryStr += "ProductLink=" +
Server.UrlEncode(Request.Url.AbsoluteUri);
queryStr += "&Company=" +
Server.UrlEncode(ConfigurationSettings.AppSettings["CompanyName"]);
// vPSession.User = new User(2);
************** Response.Redirect(
ConfigurationSettings.AppSettings["vPassport"]+queryStr
);
}
}
}
override protected void OnInit(EventArgs e)
{
InitializeComponent();
base.OnInit(e);
}
private void InitializeComponent()
{
this.LinkButton1.Click += new EventHandler(this.LinkButton1_Click);
this.Load += new EventHandler(this.Page_Load);

}
private void LinkButton1_Click(object sender, EventArgs e)
{
Response.Write("Test!!!!!");
}
</P>

Client side html.



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

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,733
Messages
2,569,440
Members
44,831
Latest member
HealthSmartketoReviews

Latest Threads

Top