Решение: В web.config вместо AutoDetect 1. <authentication mode="Forms"> 2. <forms cookieless="UseCookies"/> 3. </authentication>
Решение: Надо выполнить команду E:\Дело\Проекты\Research\Test1>C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\asp net_compiler -v / -p E:\Дело\Проекты\Research\test1 c:\temp в C:\temp будет весь код сайта. Еще ссылки по…
Решение: Вместо этого лучше использовать jQUeryUI Dialog или другие плагины
Решение: Статья - http://stackoverflow.com/questions/130020/dropdownlist-control-with-optgroups-for-asp-net-webforms совет №3 (где была оценка 8 - класс ExtendedDropDownList)
Решение: Использовать: ParseExact CultureInfo provider = CultureInfo.InvariantCulture; string format = "MM.dd.yyyy"; DateTime publishDate = DateTime.ParseExact(txtPublishDate.Text, format, provider);
Решение: Статья - http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback
Решение: dt.ToString("dd.MM.yyyy") string s = "25/7/10"; DateTime date = DateTime.Parse(s, System.Globalization.CultureInfo.CreateSpecificCulture("ru-Ru").DateTimeFormat);
Решение: double b = 12; b.ToString("f2")
Решение: На мастер странице: В коде разметки: <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))…