Regarding page execution
-
hi i am developing a webapplication which is local to my system when im running the application it is showing that it is executing from http://localhost:1234/webapplication1 where as my webapplication is in drive D i know that when a page is requested for first time the asp.net engine compiles it and converts it to a dll and for next request the same dll is used i didnt added the bin folder to my webapplication now what is the problem is i changed the code and when i run the application it is showing the old result. can any give the path for deleting the dll i m using asp.net 2.0, where i could not find Inetpub/wwwroot to solve this i uninstalled the .net and reinstalled it but even it is not solved.
-
hi i am developing a webapplication which is local to my system when im running the application it is showing that it is executing from http://localhost:1234/webapplication1 where as my webapplication is in drive D i know that when a page is requested for first time the asp.net engine compiles it and converts it to a dll and for next request the same dll is used i didnt added the bin folder to my webapplication now what is the problem is i changed the code and when i run the application it is showing the old result. can any give the path for deleting the dll i m using asp.net 2.0, where i could not find Inetpub/wwwroot to solve this i uninstalled the .net and reinstalled it but even it is not solved.
vijaylumar wrote:
to solve this i uninstalled the .net and reinstalled it
:doh: You have problems in understanding how a file-system website works. Visual Studio 2005 onwards, an inbuilt ASP.NET development server is supplied and used when you create a file system website. If you change the code and do a refresh, you should see the latest updates. In worst case, you may need to stop the ASP.NET development server and start it again. You never need to reinstall .NET framework. Give us more information about what steps can reproduce your problem so that some one can come up with a solution.
vijaylumar wrote:
i m using asp.net 2.0, where i could not find Inetpub/wwwroot
So don't you have IIS installed?
Best wishes, Navaneeth
-
vijaylumar wrote:
to solve this i uninstalled the .net and reinstalled it
:doh: You have problems in understanding how a file-system website works. Visual Studio 2005 onwards, an inbuilt ASP.NET development server is supplied and used when you create a file system website. If you change the code and do a refresh, you should see the latest updates. In worst case, you may need to stop the ASP.NET development server and start it again. You never need to reinstall .NET framework. Give us more information about what steps can reproduce your problem so that some one can come up with a solution.
vijaylumar wrote:
i m using asp.net 2.0, where i could not find Inetpub/wwwroot
So don't you have IIS installed?
Best wishes, Navaneeth
hi thanks for your reply where could i find ASP.NET Development Server
-
vijaylumar wrote:
to solve this i uninstalled the .net and reinstalled it
:doh: You have problems in understanding how a file-system website works. Visual Studio 2005 onwards, an inbuilt ASP.NET development server is supplied and used when you create a file system website. If you change the code and do a refresh, you should see the latest updates. In worst case, you may need to stop the ASP.NET development server and start it again. You never need to reinstall .NET framework. Give us more information about what steps can reproduce your problem so that some one can come up with a solution.
vijaylumar wrote:
i m using asp.net 2.0, where i could not find Inetpub/wwwroot
So don't you have IIS installed?
Best wishes, Navaneeth
hi actually i got the error like this BC30456: 'CreateResourceBasedLiteralControl' is not a member of 'ASP.masterpage_master' do u have any idea about this
-
hi thanks for your reply where could i find ASP.NET Development Server
ASP.NET Development Server is inbuilt server launched from Visual Studio, now if you want to publish this web site follow steps mentioned in this link
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me
-
ASP.NET Development Server is inbuilt server launched from Visual Studio, now if you want to publish this web site follow steps mentioned in this link
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me
hi i want to restart the ASP.NET Development Server
-
hi i want to restart the ASP.NET Development Server
When you launch the web site from VS, you will see development server in task bar. That will have options of stop. Stop the execution of web site from VS and it will stop the development server and relaunch it again. this will take care of restart of development server.
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me
-
When you launch the web site from VS, you will see development server in task bar. That will have options of stop. Stop the execution of web site from VS and it will stop the development server and relaunch it again. this will take care of restart of development server.
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me
hi i got the error like this BC30456: 'CreateResourceBasedLiteralControl' is not a member of 'ASP.masterpage_master' do u have any idea about this
-
hi i got the error like this BC30456: 'CreateResourceBasedLiteralControl' is not a member of 'ASP.masterpage_master' do u have any idea about this
This error is code specific, can you share the code so that I can look into it and let you know what could be the error. Thanks
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me
-
This error is code specific, can you share the code so that I can look into it and let you know what could be the error. Thanks
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me
hi this is the code in MasterPage in source <%@ Master Language="VB" AutoEventWireup="false" CodeFile="MasterPagePos.master.vb" Inherits="MasterPagePos"> 'in code File Public Class MasterPagePos Inherits System.Web.UI.MasterPage End Class
-
hi this is the code in MasterPage in source <%@ Master Language="VB" AutoEventWireup="false" CodeFile="MasterPagePos.master.vb" Inherits="MasterPagePos"> 'in code File Public Class MasterPagePos Inherits System.Web.UI.MasterPage End Class
I need entire code since what you are talking about is code related error.
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com My Blog Suggestions for me