Hi,
I have a web page with a simple text box with a rounded corner extender. It works fine on one computer however doesn't on the other (both IE 8). I get this error: htmlfile: Unexpected call to method or property access.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="MyIdea.WebForm2" %><%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title></title></head><body><form id="form1" runat="server"><div></div><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:RoundedCornersExtender ID="TextBox1_RoundedCornersExtender" runat="server" Enabled="True" TargetControlID="TextBox1"></asp:RoundedCornersExtender><asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager></form></body></html>