IMG-LOGO

Issue _doPostBack is undefined in IE10

andy - 10 Aug, 2013 3040 Views 0 Comment

When you upgrade your Internet Explorer to version 10. You will notice that there is an issue with the Javascript saying _doPostBack is undefined. This is actually the bug of browser definition of .Net package version 2.0 and 4.0.

To simply fix it is add the following code in your default.aspx.cs or default.aspx.vb file located on your root folder.

Then look for the initialize page method section. Below is the example of for C# version of DNN.

/* Initialize Page Loading */
private void InitializePage(){
     Page.ClientTarget = "uplevel";
}

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to change copyright text in DNN?

In this article, I am going to show you how to change the copyright text in DNN. Usually, a copyright text is located under the footer of the site template.