У меня есть приложение IIS7, которое использует платформу .net 4.0.Пул приложения имеет права (чтение / запись / выполнение) на папку приложения и имеет права (выбор / чтение / подключение) на базу данных.IIS7 принимает файлы aspx, и все выглядит нормально с настройками, однако, я получаю ошибку 404, когда я звоню ti извне сервера.
Когда я захожу на сервер и вызываю http://localhost ссылка, я получаю эту ошибку
Server Error in '/Phonebook/PhoneBook' Application.
--------------------------------------------------------------------------------
Object reference not set to an instance of an object.
Description: An unhanded 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.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
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.
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
PhoneBookApplication.DBUtils.Execute(SqlCommand command) +399
PhoneBookApplication._Default.FillddlSearch() +156
PhoneBookApplication._Default.Page_Load(Object sender, EventArgs e) +54
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +24
System.Web.UI.Control.LoadRecursive() +70
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3047
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1
Если я вызываю файл default-defaut.html, это работает, но не если я вызываю default-defaut.aspx.Но в настройках страниц daufault есть и aspx, и html.
Кроме того, похоже, что-то связано с сервером sql, но я не понимаю, где искать, чтобы отладить этот
* 1011Я понятия не имею, что делает это.Может кто-нибудь помочь?