Ahhh, VS 2003. Yes, I'm sorry, I completely forgot. VS 2003 builds your entire website into a single DLL, which is quite different from the VS 2005 Website model. You cannot just make changes to a code behind file and expect the changes to be propagated because your code will not be dynamically compiled as in VS 2005/2008. Therefore, you have two options :
1. Manually compile all of the code behind files associated with each page into a single DLL and copy the generated DLL to the Bin directory. This may prove to be quite difficult or complicated. 2. Install VS 2005 SP 1 (http://www.microsoft.com/downloads/ details.aspx?FamilyID=bb4a75ab-e2d4-4c96- b39d-37baf6b5b1dc&DisplayLang=en) which gives you the option of using Web Application projects (http://msdn.microsoft.com/en-us/asp.net/ aa336618.aspx) within VS 2005. Then you can easily migrate your existing project into VS 2005. I would prefer this option. On Feb 15, 4:16 pm, Jeena Ajiesh <[email protected]> wrote: > Its is pointing to the correct location. > I just opened one of the aspx.vb file in notepad and added one more function > and linked. But wen i browse the website in inetmgr, the piece of code i > wrote didnt affected, wen i clicked the button on that file. The main > problem is that i dont have vs 2003 application now. I uninstalled 2 months > before. > > > > On Sun, Feb 15, 2009 at 2:51 PM, Cerebrus <[email protected]> wrote: > > > Are you sure that you are browsing to the virtual directory which maps > > the location in which you made the changes ? Is your website in the > > published format ? > > > On Feb 15, 11:12 am, Jeena Ajiesh <[email protected]> wrote: > > > Hi all... > > > I dont have a vs 2003 application now, but wen i was needed to change > > some > > > coding in the project,i opened the aspx.vb file in notepad and add some > > > coding into it, wen i browsed the project in inetmgr,the code i had > > written > > > had not affected. > > > How can i rectify this problem. > > > Please help. > > > > Jeena- Hide quoted text - > > - Show quoted text -
