<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Migrating from ASP.NET 1.x to ASP.NET 2.0</title><link>http://forums.asp.net/180.aspx</link><description>Discuss issues about compatibility with and migration from previous versions of ASP.NET.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Migrating portal app in .Net 1.1 to 3.5 - portal architecture issues</title><link>http://forums.asp.net/thread/3540346.aspx</link><pubDate>Mon, 30 Nov 2009 21:25:52 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540346</guid><dc:creator>pblecha</dc:creator><slash:comments>6</slash:comments><comments>http://forums.asp.net/thread/3540346.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3540346</wfw:commentRss><description>&lt;p&gt;I am migrating a web application&amp;nbsp;that was built on the old IBuySpy portal technology over to .Net 3.5.&amp;nbsp; Because of the amount of&amp;nbsp;secure, dependent code, I&amp;#39;m having quite a bit of difficulty managing&amp;nbsp;this migration.&amp;nbsp; Here are a few points to start with (I&amp;#39;ll&amp;nbsp;have more as I&amp;#39;m going along, so thanks in advance to everyone who manages to&amp;nbsp;help me with this):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The IBuySpy portal code made the management portal a separate solution and web application;&amp;nbsp;however, because these applications are feeding from the same database layer, they need to consume the same web.config, as well as several data layer classes.&amp;nbsp; In the past, this was done by inheriting the namespace from one portal to the other; but since web apps no longer build DLL files,&amp;nbsp;I can&amp;#39;t just import the DLL from one app into the other.&amp;nbsp; I&amp;#39;m trying to&amp;nbsp;incorporate all the changes into a new project that&amp;nbsp;both web apps can then inherit from; but the crucial bit&amp;nbsp;of info is the connection string in the web.config of the non-management portal app.&lt;/li&gt;
&lt;li&gt;I want to &amp;quot;nest&amp;quot; these apps, so that&amp;nbsp;the management side is a virtual directory under the main app; that might actually solve the first problem as well, but I need to do it in&amp;nbsp;VS2008, not&amp;nbsp;in IIS, so that the namespaces will be shared.&lt;/li&gt;
&lt;li&gt;I also have an&amp;nbsp;old-style web service that&amp;#39;s not yet ready&amp;nbsp;to be migrated to 3.5 code (I&amp;#39;m not in a position to make time for a complete development project here!), that also needs to be a virtual directory under the main app, and also share the web.config.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;I&amp;#39;ve seen one, and ONLY one, website that mentions nested web apps, and it&amp;#39;s messy as h3!!.&amp;nbsp; Is there an easier, smarter solution to migrating these three separate apps into one without creating all sorts of new problems?&amp;nbsp;&amp;nbsp;&lt;/p&gt;</description></item><item><title>ConfigurationSettings.AppSettings obsolete</title><link>http://forums.asp.net/thread/3562078.aspx</link><pubDate>Sat, 12 Dec 2009 23:31:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3562078</guid><dc:creator>Robbied81</dc:creator><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3562078.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3562078</wfw:commentRss><description>&lt;p&gt;I am going through some E-Commerce exercises in .NET 1.1.&amp;nbsp; I just wanted to know if this code I have below is equivalent to the code in 1.1, as I was getting error messages regarding code being obsolete&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;u&gt;.NET 1.1&lt;/u&gt;&lt;/p&gt;&lt;p&gt;Public Class Catalog&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; Private Shared ReadOnly Property connectionstring() as String&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return ConfigurationSettings.AppSettings(&amp;quot;ConnectionString&amp;quot;)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Get&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; End Property&lt;/p&gt;&lt;p&gt;End Class&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;u&gt;.NET 2.0&lt;/u&gt;&lt;/p&gt;&lt;p&gt;Imports System.Configuration.ConfigurationManager&lt;br /&gt;&lt;br /&gt;Public Class Catalog&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Shared ReadOnly Property connectionString() As String&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return ConnectionStrings(&amp;quot;ConnectionString&amp;quot;).ConnectionString&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Get&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Property&lt;br /&gt;End Class&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;p&gt;Rob&lt;br /&gt;&lt;/p&gt;</description></item><item><title>"The base class includes the field 'WebUserControl1', but its type (common_WebUserControl) is not compatible with the type of control (ASP.common_webusercontrol_ascx)"</title><link>http://forums.asp.net/thread/1191161.aspx</link><pubDate>Tue, 07 Feb 2006 19:41:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1191161</guid><dc:creator>net_prog</dc:creator><slash:comments>42</slash:comments><comments>http://forums.asp.net/thread/1191161.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1191161</wfw:commentRss><description>Hello.&lt;br /&gt;&lt;br /&gt;I tried to convert a project from ASP.NET 1.1 to 2.0 and found one big problem which stops the whole process.&lt;br /&gt;&lt;br /&gt;An .aspx page from the subfolder "admin" includes a user control from the subfolder "common". Both subfolders ("admin" and "common" are in the root).&lt;br /&gt;&lt;br /&gt;root&lt;br /&gt;- admin&lt;br /&gt;  -- aspx page&lt;br /&gt;- common&lt;br /&gt;  -- user control&lt;br /&gt;&lt;br /&gt;The page works well when started from Visual Studio, but when the project is precompiled for deployment, the next error occurs:&lt;br /&gt;&lt;br /&gt;"The base class includes the field 'WebUserControl1', but its type (common_WebUserControl) is not compatible with the type of control (ASP.common_webusercontrol_ascx)"&lt;br /&gt;&lt;br /&gt;I tried to use "Reference" in the .aspx page, but that doesn't work.&lt;br /&gt;&lt;br /&gt;Does anybody know any workaround for this?</description></item><item><title>Assemblies in web.config file creating problems</title><link>http://forums.asp.net/thread/3556325.aspx</link><pubDate>Wed, 09 Dec 2009 15:09:31 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3556325</guid><dc:creator>cplusplus1</dc:creator><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3556325.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3556325</wfw:commentRss><description>&lt;p&gt;I migrated&amp;nbsp;my 1.1 based project to 2.0 framework, when i did that it created all assemblies under web.config.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It started giving problems,&amp;nbsp;including small things like CHR(34) it is saying CHR is not defined. also VBNULLSTRING etc.&lt;/p&gt;
&lt;p&gt;When i removed those assemblies then it started working / recognizing.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What is the use of these asemblies in web.config file:&lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff" size="1"&gt;&amp;nbsp;&amp;nbsp;&amp;lt;compilation debug=&amp;quot;true&amp;quot; strict=&amp;quot;false&amp;quot; explicit=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;assemblies&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=31BF3856AD364E35&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Web, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Drawing, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Xml, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;add assembly=&amp;quot;System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089&amp;quot;/&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/assemblies&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/compilation&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-FAMILY:;COLOR:#0000ff;FONT-SIZE:x-small;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-FAMILY:;COLOR:#0000ff;FONT-SIZE:x-small;"&gt;Thank you very much for the information.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Attempted to read or write protected memory. This is often an indication that other memory has been corrupted</title><link>http://forums.asp.net/thread/675515.aspx</link><pubDate>Wed, 25 Aug 2004 10:40:46 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:675515</guid><dc:creator>wesleymichel</dc:creator><slash:comments>27</slash:comments><comments>http://forums.asp.net/thread/675515.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=675515</wfw:commentRss><description>Hi
&lt;br /&gt;

&lt;br /&gt;
For to train with ASP.NET V2 , I have to migrate an web application.
&lt;br /&gt;

&lt;br /&gt;
It's picture galery.
&lt;br /&gt;

&lt;br /&gt;
But sometimes I have got this errors :
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Attempted to read or write protected memory. This is often an indication that other memory has been corrupted. 
&lt;br /&gt;
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
&lt;br /&gt;

&lt;br /&gt;
Exception Details: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory has been corrupted.
&lt;br /&gt;

&lt;br /&gt;
Source Error: 
&lt;br /&gt;

&lt;br /&gt;
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  
&lt;br /&gt;

&lt;br /&gt;
Stack Trace: 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
[AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory has been corrupted.]
&lt;br /&gt;
   System.EventHandler.Invoke(Object sender, EventArgs e) +0
&lt;br /&gt;
   System.Web.UI.Control.OnLoad(EventArgs e) +87
&lt;br /&gt;
   System.Web.UI.Control.LoadRecursive() +66
&lt;br /&gt;
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2835
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
--------------------------------------------------------------------------------
&lt;br /&gt;
Version Information: Microsoft .NET Framework Version:2.0.40420.0; ASP.NET Version:2.0.40420.0 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Thanks for your help.
&lt;br /&gt;

&lt;br /&gt;
 
&lt;br /&gt;

&lt;br /&gt;
</description></item><item><title>Got lost going from VS 2003 to VS 2008</title><link>http://forums.asp.net/thread/3462487.aspx</link><pubDate>Fri, 16 Oct 2009 19:32:11 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3462487</guid><dc:creator>dcwmorley</dc:creator><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3462487.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3462487</wfw:commentRss><description>&lt;p&gt;Secure Log-in&amp;nbsp; using VS 2008&lt;br /&gt;&lt;br /&gt;(A)&amp;nbsp; In VS 2003 I created \Secure. Then in solution explorer I left buttoned the pages &lt;br /&gt;I wanted to hide (say, for example, Page21 and Page22) into \Secure. &lt;br /&gt;&lt;br /&gt;( I Can&amp;#39;t do this in VS 2008 you can&amp;#39;t drag with left mouse button anymore - what should I do ?)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;(B)&amp;nbsp; I added a page login.aspx and login.aspx.vb with suitable code to compare paswords etc. Then I also dragged login into \secure&lt;/p&gt;&lt;p&gt;(C)&amp;nbsp; At the top of login.aspx.vb I added &amp;lt;code&amp;gt; Imports System.Web.Security &amp;lt;/code&amp;gt;&lt;br /&gt;&lt;br /&gt;(D)&amp;nbsp; I added a first snippet to web.config&lt;br /&gt;&lt;br /&gt;&amp;lt;code&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;authorisation mode=&amp;quot;Forms&amp;quot; &amp;gt;&lt;br /&gt;&amp;lt;forms name=&amp;quot;Page21&amp;quot; login=&amp;quot;secure\login.aspx&amp;gt;&lt;br /&gt;&amp;lt;forms name=&amp;quot;Page22&amp;quot; login=&amp;quot;secure\login.aspx&amp;gt;&lt;br /&gt;&amp;lt;/authorisation&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/code&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(E)&amp;nbsp; I added a second snippet right at the bottom so that the end of web.config read&lt;br /&gt;&lt;br /&gt;&amp;lt;code&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/system.web&amp;gt;&lt;br /&gt;&amp;lt;location path=&amp;quot;Secure&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;system.web&amp;gt;&lt;br /&gt;&amp;lt;authorization&amp;gt;&lt;br /&gt;&amp;lt;deny users = &amp;quot;?&amp;quot;/&amp;gt;&lt;br /&gt;&amp;lt;/system.web&amp;gt;&lt;br /&gt;&amp;lt;/loation&amp;gt;&lt;br /&gt;&amp;lt;/configuration&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/code&amp;gt;&lt;br /&gt;&lt;br /&gt;At the moment web.config confuses me a lot. It&amp;#39;s nothing like the VS 2003 version &lt;br /&gt;which I more of less understood. Even when I collapse some of the sections I need a map.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m not sure what to put in the new web.config, and where to put it.&lt;br /&gt;&lt;br /&gt;Questions are : How do I get login, Page21 and Page 22 inside \Secure ?&lt;br /&gt;&lt;br /&gt;&amp;nbsp;and&lt;br /&gt;&lt;br /&gt;what should be in web.config and where should it be ?&lt;/p&gt;&lt;p&gt;and&lt;/p&gt;&lt;p&gt;Is there anything else I need ?&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Migrating from .NET 1.1 to .NET 3.5</title><link>http://forums.asp.net/thread/3548706.aspx</link><pubDate>Fri, 04 Dec 2009 19:53:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3548706</guid><dc:creator>chandu1256</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3548706.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3548706</wfw:commentRss><description>&lt;p&gt;We are currently migrating from 1.1 to 3.5 .I was looking for Patterns and Practices for migration of datasets &lt;/p&gt;&lt;p&gt;Any help is appreciated&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Thanks&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Migrate an asp.net application from .NET 1.1 to .NET 2.0</title><link>http://forums.asp.net/thread/3516646.aspx</link><pubDate>Tue, 17 Nov 2009 03:59:40 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3516646</guid><dc:creator>mavericky</dc:creator><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3516646.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3516646</wfw:commentRss><description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;does anybody know a way to convert a .NET 1.1 application to .NET 2.0 version? Basically I want the current application that opens&amp;nbsp;and compiles in visual studio 2003 to open and compile in visual studio 2008.&lt;/p&gt;
&lt;p&gt;Any help would&amp;nbsp;be great!!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thanks in anticipation,&lt;/p&gt;
&lt;p&gt;mavericky&amp;nbsp;&lt;/p&gt;</description></item><item><title>migrated webapp from .net1.1 to 3.5 (now dropdownlist have duplicate items, and some controls render double)</title><link>http://forums.asp.net/thread/3517084.aspx</link><pubDate>Tue, 17 Nov 2009 08:50:56 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3517084</guid><dc:creator>VizualG</dc:creator><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3517084.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3517084</wfw:commentRss><description>&lt;p&gt;Hi everyone,&lt;br /&gt;&lt;br /&gt;So my new boss asked me to migrate there old 1.1 webapp to .net 3.5, so thats what i did.&lt;br /&gt;The conversion succeeded without any errors, just a few warnings about some obsolite classes (system.web.mail)&lt;/p&gt;
&lt;p&gt;The real problems came when i first fired up the now .net 3.5 webapp,&lt;br /&gt;almost all dropdownlist have duplicate items, some gridviews get rendered double.&lt;br /&gt;And most other listview and sub menu&amp;#39;s also have duplicate items.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s almost like every control gets rendered/databound twice, or some kind of double viewstate consists.&lt;br /&gt;Upon looking over the source codes i noticed that most of the Viewstate was controlled in de code-behinds,&lt;br /&gt;almost like the first programmeur used the viewstate like some sort of session or chache object&lt;br /&gt;reading and writing to the viewstate, but disabling it on the control it self.&lt;br /&gt;&lt;br /&gt;I myself started programming asp.net c# from version 3.5 so i have no past experience about .net 1.1&lt;br /&gt;the sources are way to big to include here, but just maybe i&amp;#39;m not the first one this happend to&lt;br /&gt;and so maybe someone here could help me find a solution to this problem...?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;thnx,&lt;/p&gt;</description></item><item><title>Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl).</title><link>http://forums.asp.net/thread/3497018.aspx</link><pubDate>Thu, 05 Nov 2009 22:09:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3497018</guid><dc:creator>InNeedOfAssistance</dc:creator><slash:comments>5</slash:comments><comments>http://forums.asp.net/thread/3497018.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3497018</wfw:commentRss><description>&lt;p&gt;For the life of me I can&amp;#39;t figure out what is causing this error. I have copied and pasted the namespace and the class name into inherits on the .aspx page. I had this compiled and working but now since I switched my development PC to Visual Studio 2008 on a Windows 7 OS, I can no longer compile. I don&amp;#39;t have any old code with section12.PicturesAjax in it. Hopefully you&amp;#39;ll see what I&amp;#39;m missing and clue me in. Help!&lt;br /&gt;&lt;/p&gt;&lt;p&gt;PicturesAjax&lt;b&gt;.aspx code:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;&amp;lt;%@ page language=&amp;quot;c#&amp;quot; autoeventwireup=&amp;quot;true&amp;quot; inherits=&amp;quot;section12.PicturesAjax&amp;quot; CodeFile=&amp;quot;PicturesAjax.aspx.cs&amp;quot; Codebehind=&amp;quot;PicturesAjax.aspx.cs&amp;quot;&amp;nbsp; %&amp;gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;%=pageContents%&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;PicturesAjax&lt;b&gt;.aspx.cs code:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;using System;&lt;br /&gt;using System.Collections;&lt;br /&gt;using System.ComponentModel;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Drawing;&lt;br /&gt;using System.Web;&lt;br /&gt;using System.Web.SessionState;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;using System.Web.UI.HtmlControls;&lt;br /&gt;&lt;br /&gt;namespace section12&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; partial class PicturesAjax : System.Web.UI.Page&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public string pageContents = &amp;quot;&amp;quot;;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // This code opens an .asp picture page and strips out the code from body beginning to end body&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pageContents = &lt;/i&gt;code stripped from .asp picture page&lt;i&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Use membership provider?</title><link>http://forums.asp.net/thread/2536029.aspx</link><pubDate>Mon, 04 Aug 2008 23:03:40 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2536029</guid><dc:creator>new2aspdotnet</dc:creator><slash:comments>5</slash:comments><comments>http://forums.asp.net/thread/2536029.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=2536029</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;We are moving from ASP.Net 1.1 to 3.5 (yup, no 2.0).&amp;nbsp; &lt;/p&gt;&lt;p&gt;I would like to know if we can use the Membership provider. We use SQL Server 2000. And we already have our Users table and associated sprocs, we cannot change the table design. From my little research, it looks like we cannot use the Membership provider. I just wanted to confirm. &lt;/p&gt;&lt;p&gt;Thanks. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Configuring website to ASP.NET 2.0 failed. You may need to manually configure this site for ASP.NET 2.0 in order for your site to run correctly.</title><link>http://forums.asp.net/thread/1268488.aspx</link><pubDate>Wed, 26 Apr 2006 06:41:07 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1268488</guid><dc:creator>junpro</dc:creator><slash:comments>14</slash:comments><comments>http://forums.asp.net/thread/1268488.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1268488</wfw:commentRss><description>&lt;p&gt;I am trying to create a new website project in Visual Studio 2005, the website is an IIS website (ie. &lt;a href="http://localhost/website1"&gt;http://localhost/website1&lt;/a&gt;) and i get the following error message;&lt;/p&gt;
&lt;p&gt;Configuring website to ASP.NET 2.0 failed. You may need to manually configure this site for ASP.NET 2.0 in order for your site to run correctly.&lt;/p&gt;
&lt;p&gt;then when i try to debug the project i get the following error;&lt;/p&gt;
&lt;p&gt;Unable to start debugging on the web server. The server does not support debugging of ASP.net or ATL server applications. &lt;/p&gt;
&lt;p&gt;I am running Windows XP professional, with .NET 2.0 installed, and IIS V5.1&lt;/p&gt;
&lt;p&gt;How can i get a simple website to debug on my machine?&lt;/p&gt;</description></item><item><title>Error: BC30002  Type'x' is not defined for web reference</title><link>http://forums.asp.net/thread/3406976.aspx</link><pubDate>Tue, 15 Sep 2009 21:08:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3406976</guid><dc:creator>Brian.hackett</dc:creator><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3406976.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3406976</wfw:commentRss><description>&lt;p&gt;&lt;br /&gt;I have a web service that has worked fine in an older Visual Studio 2003 version.&lt;br /&gt;I am trying to add it an an upgraded Visual Studio 2005 Web Applicaiton and having some issues.&lt;br /&gt;&lt;br /&gt;I can add the Web Reference and see the Service, its Disco, WSDl and what it calls the reference.map and reference.vb file all within the&amp;nbsp;folder.&lt;br /&gt;&lt;br /&gt;I can refer to the Web reference in code with no issues...&amp;nbsp; i can also right click and do a &amp;quot;Go To Definition&amp;quot; and return to associated VB file associated to the Web Refernce.&lt;br /&gt;
&lt;p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;
&lt;p&gt;Dim&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;x&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#008080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#008080;"&gt;Service&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;As&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#800080;"&gt;New&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#008080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#008080;"&gt;DecryptTokenService&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#808000;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#008080;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#008080;"&gt;DecryptToken&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;br /&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt;When I go to run and compile the Web Applicaiton I get the following error.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Compiler Error Message: &lt;/strong&gt;&lt;span style="FONT-FAMILY:Arial;"&gt;BC30002: Type &amp;#39;DecryptTokenService.DecryptToken&amp;#39; is not defined.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;is there some compile setting or something in the Web.config I am missing?&lt;br /&gt;&lt;br /&gt;here is the web.configs section, please ignore the (...) in the URL, its removed intentionaly.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;applicationSettings&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;CMST.My.MySettings&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;setting&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#ff0000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#ff0000;"&gt;name&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;DecryptTokenService_DecryptToken&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#ff0000;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#ff0000;"&gt;serializeAs&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;String&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;value&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;"&gt;https://.../DecryptTokenService/DecryptToken.asmx&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;lt;/&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;value&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;/&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;setting&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;/&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;CMST.My.MySettings&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;/&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#a31515;"&gt;applicationSettings&lt;/span&gt;&lt;/span&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&lt;span style="FONT-SIZE:x-small;COLOR:#0000ff;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Sample usage of ClientScriptManager.RegisterFo­rEventValidation</title><link>http://forums.asp.net/thread/1139510.aspx</link><pubDate>Mon, 12 Dec 2005 18:59:13 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1139510</guid><dc:creator>n33470</dc:creator><slash:comments>10</slash:comments><comments>http://forums.asp.net/thread/1139510.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1139510</wfw:commentRss><description>&lt;p&gt;&lt;a name=msg_c776366ea7d424f1&gt;&lt;/a&gt;Hi all, &lt;br /&gt;
&lt;p&gt;I have a dropDownList on a web page that is populated by client-side &lt;br /&gt;script. &amp;nbsp;I get an error on PostBack of the page. &amp;nbsp;I've seen quite a few &lt;br /&gt;posts about this, so I understand the issue, and why it's occurring. &amp;nbsp;I &lt;br /&gt;know that I need to remove the automatic event validation that ASP.NET &lt;br /&gt;is performing on the control. &amp;nbsp; &amp;nbsp;One of my options is to use the page &lt;br /&gt;directive enableEventValidation="false". &amp;nbsp; I'd rather not do this for &lt;br /&gt;the entire page, I'd rather remove the event validation for only the &lt;br /&gt;dropdownlist. &lt;br /&gt;
&lt;p&gt;I've read that ClientScriptManager.RegisterForEventValidation can be &lt;br /&gt;used for this. &amp;nbsp; However, I haven't been able to figure out exactly how &lt;br /&gt;to do it. &amp;nbsp; I have overloaded the Render() method like this (the &lt;br /&gt;object cboLookup is the DropDownList): &lt;br /&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; protected override void Render(System.Web.UI.HtmlTextWriter &lt;br /&gt;writer) &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; base.Render(writer); &lt;br /&gt;
&lt;p&gt;this.Page.ClientScript.RegisterForEventValidation(cboLookup.ID); &lt;br /&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } &lt;br /&gt;
&lt;p&gt;However, after doing this I still have the problem when the page is &lt;br /&gt;posted back. &amp;nbsp; &amp;nbsp;I think I'm missing an extra step here, but I can't &lt;br /&gt;figure out what it is. &amp;nbsp; The method name is called &lt;br /&gt;"RegisterForEventValidation", however I actually want to un-register &lt;br /&gt;the control from ASP.NET event validation. &amp;nbsp;How do you do this? &lt;br /&gt;
&lt;p&gt;Can someone provide a simple example of how to bypass the automatic &lt;br /&gt;event validation code on postback of the page for a single control. &lt;br /&gt;
&lt;p&gt;--steve &lt;br /&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;</description></item><item><title>from .net 2.0 to .net 3.5</title><link>http://forums.asp.net/thread/3455515.aspx</link><pubDate>Tue, 13 Oct 2009 10:11:10 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3455515</guid><dc:creator>aakbar</dc:creator><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3455515.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3455515</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have recently moved from .net 2.0 to .net 3.5 framework.
also i have upgraded my development environment from VS 2005 to VS2008.
.net 3.5 framework was installed by VS2008 setup but it did not removed
earlier version of .net. Means if i go into add remove programs i can
still see .net 1.1, 2.0 and 3.0. Also if i go into GAC i can see
multiple assemblies there.&lt;/p&gt;
&lt;p&gt;my question is that if all our
application are running in .net 3.5 would there be any assembly in GAC
with earlier version. if not i could not find following assemblies
under .net 3.5:&lt;/p&gt;
&lt;p&gt;system.xml&lt;/p&gt;
&lt;p&gt;system.windows.forms&lt;/p&gt;
&lt;p&gt;system.web.services&lt;/p&gt;
&lt;p&gt;system.web&lt;/p&gt;
&lt;p&gt;system.security&lt;/p&gt;
&lt;p&gt;system.data&lt;/p&gt;
&lt;p&gt;and few other, all the above files are of version 2.0&lt;/p&gt;
&lt;p&gt;does it mean .net 3.5 is incomplete without earlier version ..........&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;please help me to understand the concept.&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>.Net Framework 2.0 Upgrade  Error : OracleClient requires Oracle client software version 8.1.7 or greater</title><link>http://forums.asp.net/thread/3433948.aspx</link><pubDate>Wed, 30 Sep 2009 18:13:48 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3433948</guid><dc:creator>Dejabu2009</dc:creator><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3433948.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3433948</wfw:commentRss><description>&lt;p&gt;&lt;img title="Smile" alt="Smile" src="http://forums.asp.net/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif" border="0" /&gt;&lt;/p&gt;
&lt;p&gt;Recently I upgraded the whole application from&amp;nbsp;.Net Framework to .Net Framework 2.0.&lt;/p&gt;
&lt;p&gt;Also we migrated from Visual Studio.Net 2003 to 2008.&lt;/p&gt;
&lt;p&gt;After making all the changes&amp;nbsp;to the whole site, now when&amp;nbsp;the application is&amp;nbsp;trying to connect to Oracle 10g database, I am getting the below error message.&lt;/p&gt;
&lt;p&gt;&amp;quot;&lt;strong&gt;OracleClient requires Oracle client software version 8.1.7 or greater&lt;/strong&gt;&amp;quot;&lt;/p&gt;
&lt;p&gt;The IIS Web Server Oracle 10 Client. I can log in to SQL plus from this machine. TNS entry is fine.&lt;/p&gt;
&lt;p&gt;I also have the old Web application (.Net Framework 1.1) running fine from this Server.&lt;/p&gt;
&lt;p&gt;Any help to resolve this issue, will highly be appreciated.&lt;/p&gt;</description></item><item><title>Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl)</title><link>http://forums.asp.net/thread/1126873.aspx</link><pubDate>Tue, 29 Nov 2005 18:23:42 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1126873</guid><dc:creator>brian.wenhold</dc:creator><slash:comments>7</slash:comments><comments>http://forums.asp.net/thread/1126873.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1126873</wfw:commentRss><description>&lt;P&gt;Here is the page directive for the page that throws the error:&lt;BR&gt;&lt;FONT size=2&gt;&lt;BR&gt;&amp;lt;%&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;@&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#800000 size=2&gt;Page&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;language&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="c#"&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;Inherits&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="University.AspNet.Index"&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;CodeFile&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="Index.aspx.cs"&lt;/FONT&gt;&lt;FONT size=2&gt; %&amp;gt;&lt;BR&gt;&lt;BR&gt;The code behind file Index.aspx.cs starts like this:&lt;BR&gt;&lt;FONT color=#0000ff size=2&gt;&lt;/P&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;using&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; University.Framework.UI;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/FONT&gt;namespace&lt;/FONT&gt;&lt;FONT size=2&gt; University.AspNet&lt;/P&gt;
&lt;P&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;public&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;partial&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;class&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#008080 size=2&gt;Index&lt;/FONT&gt;&lt;FONT size=2&gt; : University.Framework.UI.&lt;/FONT&gt;&lt;FONT color=#008080 size=2&gt;HomePage&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;BR&gt;The code behind is extending this HomePage class, which is in turn an extenstion of another class University.Framework.UI.Page, which extends the System.Web.UI.Page class.&lt;BR&gt;&lt;BR&gt;Am I misusing the Inherits parameter somehow? &lt;BR&gt;&lt;BR&gt;Oddly there is a blue squiggle under only the first 'i' in University in the code behind that links to the error in the subject of this post.&lt;BR&gt;&lt;BR&gt;Any insights as to the nature of this error would be greatly appreciated. Thanks.&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description></item><item><title>IsStartupScriptregistered has become obsolete and use clientscript. </title><link>http://forums.asp.net/thread/3400408.aspx</link><pubDate>Fri, 11 Sep 2009 17:40:41 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3400408</guid><dc:creator>cplusplus1</dc:creator><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3400408.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3400408</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;I am switching from 1.1 to 2.0 and facing some problems with code, Getting a message on senderpage.Is startupScriptregisted has become obsolete instead use clientscript.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But when i replaced this:senderpage.RegisterStartupScript(alertKey, strScript)&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;to Clientscript.RegisterStartupScript(alertKey, strScript) getting another error message saying overloaded.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Public Function CreateMessageAlert(ByVal senderpage As System.Web.UI.Page, ByVal alertMsg As String, ByVal alertKey As String)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim strScript As String&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strScript = &amp;quot; &amp;lt;script language=JavaScript&amp;gt;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strScript += &amp;quot;alert (&amp;#39;&amp;quot; + alertMsg + &amp;quot;&amp;#39;);&amp;lt;/script&amp;gt;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If (Not senderpage.IsStartupScriptRegistered(alertKey)) Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; senderpage.RegisterStartupScript(alertKey, strScript)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Function&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also does&amp;#39;nt know what to put as return line at the end of function.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thankyou very much for the helpful info.&lt;/p&gt;</description></item><item><title>expression of type system.web.ui.webcontrols.webcontrol can never be of type microsoft.web.ui.webcontrols.tab</title><link>http://forums.asp.net/thread/3400370.aspx</link><pubDate>Fri, 11 Sep 2009 17:18:01 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3400370</guid><dc:creator>cplusplus1</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3400370.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3400370</wfw:commentRss><description>&lt;p&gt;i am switching from 1.1 to 2.0 framework, on some if conditions:&lt;/p&gt;
&lt;p&gt;If TypeOf (webCtrl) Is Tab then&lt;/p&gt;
&lt;p&gt;getting the following error message, what should i change the above line to.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;quot;expression of type system.web.ui.webcontrols.webcontrol can never be of type microsoft.web.ui.webcontrols.tab&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thank you very much for the info.&lt;/p&gt;</description></item><item><title>Invalid postback or callback argument.</title><link>http://forums.asp.net/thread/1064482.aspx</link><pubDate>Tue, 27 Sep 2005 13:15:59 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1064482</guid><dc:creator>krathni</dc:creator><slash:comments>181</slash:comments><comments>http://forums.asp.net/thread/1064482.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1064482</wfw:commentRss><description>(using Aug CTP)&lt;br&gt;
&lt;br&gt;
I have a composite control which consists of&amp;nbsp; label, linkbutton
&amp;amp; textbox control. Depending on the display mode (a property within
the control) one of the control gets displayed. However when the
linkbutton is clicked it seems to throw up this error. The control
works fine in .NET 1.1. &lt;br&gt;
&lt;br&gt;
The control inherits from System.Web.UI.WebControls.WebControl,
IPostBackDataHandler &amp;amp; INamingContainer &amp;amp; this is my
IpostBackDataHandler implementation&lt;br&gt;
&lt;br&gt;
&amp;nbsp;#region&amp;nbsp; IPostBackDataHandler Implementation&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; void IPostBackDataHandler.RaisePostDataChangedEvent() &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; OnTextChanged(System.EventArgs.Empty);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; bool
IPostBackDataHandler.LoadPostData(string postDataKey,
System.Collections.Specialized.NameValueCollection postCollection) &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; bool retVal = false;&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (!this.Text.Equals(postCollection[postDataKey]))&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; this.Text = postCollection[postDataKey];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; retVal = true;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return retVal;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endregion IPostBackDataHandler Implementation&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
####&amp;nbsp; ERROR BEGIN ####&lt;br&gt;
&lt;br&gt;
Invalid postback or callback argument. &lt;br&gt;
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code. &lt;br&gt;
&lt;br&gt;
Exception Details: System.ArgumentException: Invalid postback or callback argument.&lt;br&gt;
&lt;br&gt;
Source Error: &lt;br&gt;
&lt;br&gt;
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of
the exception can be identified using the exception stack trace
below.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
Stack Trace: &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
[ArgumentException: Invalid postback or callback argument.]&lt;br&gt;
&amp;nbsp;&amp;nbsp; System.Web.UI.ClientScriptManager.ValidateEvent(String uniqueId, String argument) +2088580&lt;br&gt;
&amp;nbsp;&amp;nbsp; System.Web.UI.WebControls.TextBox.LoadPostData(String postDataKey, NameValueCollection postCollection) +89&lt;br&gt;
&amp;nbsp;&amp;nbsp;
System.Web.UI.WebControls.TextBox.System.Web.UI.IPostBackDataHandler.LoadPostData(String
postDataKey, NameValueCollection postCollection) +11&lt;br&gt;
&amp;nbsp;&amp;nbsp; System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad) +718&lt;br&gt;
&amp;nbsp;&amp;nbsp; System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
+3817&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
--------------------------------------------------------------------------------&lt;br&gt;
Version Information: Microsoft .NET Framework Version:2.0.50712.6; ASP.NET Version:2.0.50712.6 &lt;br&gt;</description></item><item><title>Error:  "Failed to grant minimum permission requests." </title><link>http://forums.asp.net/thread/1522890.aspx</link><pubDate>Mon, 08 Jan 2007 16:51:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1522890</guid><dc:creator>pblecha</dc:creator><slash:comments>3</slash:comments><comments>http://forums.asp.net/thread/1522890.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1522890</wfw:commentRss><description>&lt;p&gt;I recently migrated an ASP.NET 1.1 application to 2.0.&amp;nbsp; The application works fine locally; however, after copying the application to a remote server and attempting to set up remote debugging, I get the following error:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;"Could not load file or assembly 'XEdit, Version=1.0.2174.28224, Culture=neutral, PublicKeyToken=null' or one of its dependencies.&amp;nbsp; Failed to grant minimum permission requests. (Exception from HRESULT:&amp;nbsp;0x80131417)"&lt;/p&gt;
&lt;p&gt;&amp;nbsp;What is causing this error, and what are the necessary steps to alleviate the problem and allow me to 1) debug remotely using VS2005; and 2) deploy the project properly?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>Migrating WebApp that required MSXML4 from 2k3 to 2k8</title><link>http://forums.asp.net/thread/3379554.aspx</link><pubDate>Mon, 31 Aug 2009 21:16:49 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3379554</guid><dc:creator>Jorge Bastos</dc:creator><slash:comments>7</slash:comments><comments>http://forums.asp.net/thread/3379554.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3379554</wfw:commentRss><description>&lt;p&gt;Hi there,&lt;/p&gt;&lt;p&gt;I have an Website/app that is currently running on a wk3  to a 2k8 x64 server.&lt;br /&gt;I don&amp;#39;t have access to the 2k3 machine!&lt;br /&gt;After copying the site to the new machine, and installed MSXML4 SP2, it simply doesn&amp;#39;t run, and I have this error:&lt;/p&gt;&lt;p&gt;---&lt;font face="Arial" size="2"&gt;&lt;br /&gt;Microsoft VBScript runtime &lt;/font&gt; &lt;font face="Arial" size="2"&gt;error &amp;#39;800a01ad&amp;#39;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Arial" size="2"&gt;ActiveX component can&amp;#39;t create object&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Arial" size="2"&gt;/Engine/xmlfunctions.asp&lt;/font&gt;&lt;font face="Arial" size="2"&gt;, line 18&lt;br /&gt;---&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;font size="2"&gt;&lt;font face="Arial"&gt;This line contein the folowing:&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;set xml = Server.CreateObject(MSXML_PROGID2)&lt;/p&gt;&lt;p&gt;I&amp;#39;m completly out of ideas of what can be this problem.&lt;br /&gt;Anyone has an idea of what it could be the problem?&lt;/p&gt;&lt;p&gt;Thanks in advanced,&lt;br /&gt;Jorge Bastos,&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Unable to load DLL 'foo.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)</title><link>http://forums.asp.net/thread/1121085.aspx</link><pubDate>Tue, 22 Nov 2005 20:32:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1121085</guid><dc:creator>sorvik</dc:creator><slash:comments>12</slash:comments><comments>http://forums.asp.net/thread/1121085.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=1121085</wfw:commentRss><description>I have .Net 1.1&amp;nbsp; Application that works fine with the same dll, after redesigning application to 2.o Framework I have this error, I tried to compile it with /MT (this is C++&amp;nbsp;project in ANSI C, planned to be working on different platforms), but had no luck. Even tryed to make dummy dll&amp;nbsp; with function doing nothing -&amp;nbsp;still didn't work.&amp;nbsp;What can be problem and how to fix it?</description></item><item><title>It's quiet...too quiet. Migrated first site from .NET 1.1 to 3.5</title><link>http://forums.asp.net/thread/3373396.aspx</link><pubDate>Thu, 27 Aug 2009 19:59:46 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3373396</guid><dc:creator>xr280xr</dc:creator><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3373396.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3373396</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi,&lt;/p&gt;
&lt;p&gt;I just tried migrating an asp.net project that I wrote in Visual Studio 2003 years ago to a visual studio 2008 project. I went through the conversion wizard and to my surprise, it worked without any errors or warnings. I would have thought that at the very least there would be something about the DataGrid no longer being supported, but there were no problems. &lt;/p&gt;
&lt;p&gt;Because it&amp;#39;s been so long since I&amp;#39;ve looked at this app and because it has no logging of any kind, I&amp;#39;m not sure I know how to do a good job testing it top to bottom. So to those of you who are more experienced with migration, are there any common&amp;nbsp;issues that I should watch out for? Any specific tests I can run? How do I make sure there are no compatability Easter eggs?&lt;/p&gt;</description></item><item><title>Migrating Access forms to ASP.net</title><link>http://forums.asp.net/thread/3285766.aspx</link><pubDate>Fri, 10 Jul 2009 10:52:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3285766</guid><dc:creator>cloudsin</dc:creator><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3285766.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=180&amp;PostID=3285766</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi All,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am planning to create a component that migrates all the forms that are created in Access to ASP.net. Please help me if any one have the suggestions or any web stes that can provide help. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;</description></item></channel></rss>