| Vincent's profileInfinity aka VincentPhotosBlogLists | Help |
|
September 27 Problem Upgrading Existing Pages to AJAX Enabled Using AtlasUpgraded one of my asp.net 1.1 to asp.net 2.0 recently. Following the instruction here on how to install Atlas to existing web pages found here http://atlas.asp.net/docs/overview/install.aspx
Add a new page. It works perfectly. However, i'm having problem with the existing web pages. It gives me a popup with the msg 'Unknown error'. Spend 3 hours debugging and finally i found the difference. There seems to be a problem with the <meta> in the <head> tag
Original (the one giving me problem)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html> <head runat="server"> <title>WebForm3</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </head> Changed to:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html> <head runat="server"> <title>WebForm3</title> </head> Problem solved ! TrackbacksThe trackback URL for this entry is: http://infinity-pws.spaces.live.com/blog/cns!7CAC7A82B6773414!179.trak Weblogs that reference this entry
|
|
|