Решение: На мастер странице: В коде разметки: <a id="lnkDefault" runat="server" > <img id="imgDefault" runat="server" border="0" alt=" Ремонт квартир. Отделка офисов…
Решение: В web.config: <authentication mode="Forms"> <forms loginUrl="Login.aspx"> <credentials> <user name="Joe" password="Smith" /> </credentials> </forms> </authentication> В форме: if (FormsAuthentication.Authenticate(this.txtLogin.Text, this.txtPass.Text))…
Решение: Статья - http://learn.iis.net/page.aspx/461/creating-rewrite-rules-for-the-url-rewrite-module
Решение: if(Page_IsValid==true) ...
Решение: public static void GetPage(String url) { try { // Creates an HttpWebRequest for the specified URL. HttpWebRequest myHttpWebRequest =…
Решение: 1. Сделать на проекте AddServiceReference - написать URL - дать имя. 2. Код доступа: srPanel.esUsersSoapClient proxy = new srPanel.esUsersSoapClient();…
Решение: Статья - http://stackoverflow.com/questions/735054/how-to-convert-asp-net-website-to-asp-net-web-application Статья - http://msdn.microsoft.com/en-us/library/aa983476.aspx
Решение: Базовый класс страницы public class LeaveViewStateOnTheServerPage: BasePage { protected override object LoadPageStateFromPersistenceMedium() { object viewStateBag; string m_viewState = (string)Session["ViewState"];…
Решение: Обрабатываем событие кнопки Далее protected void wizSubmitOrder_NextButtonClick(object sender, WizardNavigationEventArgs e) { if (e.CurrentStepIndex == 0) { Page.Validate("ValidateQuantity"); if (!Page.IsValid)…