ASP.NET

С ASP.NET 2.0 на ASP.NET 4.0 – как обновить приложение

Решение: В web.config надо закомментировать несколько строк (в ConfigSections): <configSections> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup,…

9 лет ago

Решение проблемы при установке приложения ASP.NET на IIS

Решение: C:\Windows\Microsoft.NET\Framework\v4.0.30319 aspnet_regiis -i -enable Статья - http://olegtarasov.me/2010/09/nastrojka-iis-7-5-i-asp-net-4/

9 лет ago

Редактор Editor и RequireFieldValidator неправильно работают на ModalPopupPanel (при загрузке появляется звездочка)

Решение: Лучше его не использовать или использовать JS для проверки.

9 лет ago

Разница между server.transfer response.redirect

Решение: А разница в том, что Response.Redirect отправляет ответ браузеру, а Server.Transfer просто начинает обрабатывать другую страницу в рамках того…

9 лет ago

Работа с excel

Решение: Статьи http://msdn.microsoft.com/en-us/office/ee358824.aspx http://stackoverflow.com/questions/643643/how-to-create-and-download-excel-document-using-asp-net http://msdn.microsoft.com/en-us/library/dd452407.aspx http://archive.msdn.microsoft.com/OOXMLv20CTP/Release/ProjectReleases.aspx?ReleaseId=2080 http://www.microsoft.com/en-us/download/confirmation.aspx?id=5124 http://stackoverflow.com/questions/2624333/how-do-i-read-data-from-a-spreadsheet-using-the-openxml-format-sdk http://stackoverflow.com/questions/824056/openxml-sdk-spreadsheet-starter-kits

9 лет ago

Работа с excel 2007

Решение: Статья - http://www.microsoft.com/en-us/download/details.aspx?id=13255 Статья - http://social.msdn.microsoft.com/Forums/en/adodotnetdataproviders/thread/e5f8ba13-21a3-4365-8651-25b6ae2ce267 и проект aldoor/admin/uploadXLS

9 лет ago

Проверка на число в коде

Решение: // Get the quantity, guarding against bogus values if (Int32.TryParse(quantityTextBox.Text, out quantity)) { // Update product quantity success =…

9 лет ago

Проблемы с postback в IE10

Решение: Надо на сервер установить обновление Статья - http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx

9 лет ago

Проблемы с кодировкой при чтении удаленного документа

Решение: try { string url="http://..."; WebRequest req = WebRequest.Create(url); WebResponse resp = req.GetResponse(); Stream stream = resp.GetResponseStream(); StreamReader sr =…

9 лет ago

Проблема с postback на странице с url rewriting

Решение: http://www.helicontech.com/forum/6254-ISAPI_Rewrite__aspnet_postback.html

9 лет ago