Parser Error when deploy ASP.NET application

后端 未结 17 790
既然无缘
既然无缘 2021-01-03 22:56

I\'ve finished simple asp.net web application project, compiled it, and try to test on local IIS. I\'ve create virtual directory, map it with physical directory, then put al

17条回答
  •  没有蜡笔的小新
    2021-01-03 23:42

    I know i am too late to answer but it could help others and save time.

    Following might be other solutions.

    Solution 1: See Creating a Virtual Directory for Your Application for detailed instructions on creating a virtual directory for your application.

    Solution 2: Your application’s Bin folder is missing or the application’s DLL file is missing. See Copying Your Application Files to a Production Server for detailed instructions.

    Solution 3: You may have deployed to the web root folder, but have not changed some of the settings in the Web.config file. See Deploying to web root for detailed instructions.

    In my case Solution 2 works, while deploying to server some DLL's from bin directory has not been uploaded to server successfully. I have re-upload all DLL's again and it works!!

    Here is the reference link to solve asp.net parser error.

提交回复
热议问题