С 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, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35″> <!–<section name=”scriptResourceHandler” type=”System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, […]

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

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

Работа с 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

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

Решение: try { string url=”http://…”; WebRequest req = WebRequest.Create(url); WebResponse resp = req.GetResponse(); Stream stream = resp.GetResponseStream(); StreamReader sr = new StreamReader(stream, System.Text.Encoding.Default); xml = sr.ReadToEnd(); stream.Close(); sr.Close(); } catch […]