or
<telerik:RadColorPicker ID="RadColorPicker1" runat="server" EnableCustomColor="True" ShowRecentColors="True" ShowIcon="True"> </telerik:RadColorPicker>hi
when i use radajax in my login panel, sometimes i get this error message:
System.Web.HttpException (0x80004005): The length of the query string for this request exceeds the configured maxQueryStringLength value. at System.Web.HttpRequest.ValidateInputIfRequiredByConfig() at System.Web.HttpApplication.ValidateRequestExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at http://elix.ir:80/WebResource.axd?d=QKIdEQgXIJhOS6nEbL0GA26gwLz8CyDbQ0NK4tfT_ytfAlSrNGAKsRkbQ4C-u8a8Y6_H-6xgUpTGI4yt7wCD7YBt,%20'ctl00_btnLogin')">خلاصه%20وضعیت ارسال%20آگهیدریافت%20آگهیواریز%20به%20حساببرداشت%20از%20حسابپیام%20های%20دریافت%20شدهارسال%20پیام%20به%20سایتویرایش%20مشخصاتخروجاطلاعاتامروز:%20یکشنبه%201390.2.4تبلیغات%20امروز:تبلیغات%20دیروز:45,982%20نمایش799%20کلیک35,875%20نمایش910%20کلیکواریز%20به%20حساب تمامی%20حقوق%20این%20سایت%20محفوظ%20و%20متعلق%20به%20شرکت%20چکاوک%20ایده%20پرداز%20می%20باشد.my code is:
<tlk:RadScriptManager ID="radScriptManager" runat="server" /> <tlk:RadAjaxManager ID="radAjaxManager" runat="server" DefaultLoadingPanelID="radAjaxLoadingPanel"> <AjaxSettings> <tlk:AjaxSetting AjaxControlID="pnlLogin"> <UpdatedControls> <tlk:AjaxUpdatedControl ControlID="pnlLogin" /> </UpdatedControls> </tlk:AjaxSetting> </AjaxSettings> </tlk:RadAjaxManager> <tlk:RadAjaxLoadingPanel ID="radAjaxLoadingPanel" runat="server" InitialDelayTime="500" Skin="Default"> </tlk:RadAjaxLoadingPanel> <asp:Panel ID="pnlLogin" runat="server" DefaultButton="btnLogin"> <div> <asp:Label ID="lblUsername" runat="server" AssociatedControlID="txtUsername" Text="username " /> </div> <div> <asp:TextBox ID="txtUsername" runat="server" MaxLength="50" style="width:175px;" /> </div> <div> <asp:Label ID="lblPassword" runat="server" AssociatedControlID="txtPassword" Text="password " /> </div> <div> <asp:TextBox ID="txtPassword" runat="server" MaxLength="50" style="width:175px;" TextMode="Password" /> </div> <div> <asp:Button ID="btnLogin" runat="server" CssClass="btn" OnClick="btnLogin_Click" Text="login" ValidationGroup="login" /> </div> </asp:Panel>i use Telerik.Web.UI v2011.1.322.40
What is the reason for this error and how i can fix it?
var Ajarg ="sizechange"; var ajm = $find("<%=RadAjaxManager1.ClientID %>"); ajm.ajaxRequest(Ajarg);<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="true"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="Panel1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="Panel1" /> <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadMultiPage1"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="Panel1" /> <telerik:AjaxUpdatedControl ControlID="RadMultiPage1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <div> <asp:Panel ID="Panel1" runat="server"> <telerik:RadTabStrip ID="RadTabStrip1" runat="server" AutoPostBack="true" MultiPageID="RadMultiPage1"> <Tabs> <telerik:RadTab Text="Tab1" Selected="true" PageViewID="RadPageView1"></telerik:RadTab> <telerik:RadTab Text="Tab2" PageViewID="RadPageView2"></telerik:RadTab> </Tabs> </telerik:RadTabStrip> </asp:Panel> <telerik:RadMultiPage ID="RadMultiPage1" runat="server" RenderSelectedPageOnly="true"> <telerik:RadPageView ID="RadPageView1" runat="server" Selected="true"> RadPageView1</telerik:RadPageView> <telerik:RadPageView ID="RadPageView2" runat="server"> <telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" Width="960px" Height="540px" DisplayUpFolderItem="True" EnableCopy="True"> <Configuration ViewPaths ="~/fileexplorer" UploadPaths ="~/fileexplorer" DeletePaths="~/fileexplorer/delete" /> </telerik:RadFileExplorer> </telerik:RadPageView> </telerik:RadMultiPage><asp:Repeater runat="server" ID="Repeater1" DataSourceID="SqlDataSource1" OnItemDataBound="repeater1_ItemDataBound">
<ItemTemplate>
<div style="border: 1px solid #999999; float: left; margin: 3px; width: 125px; height: 125px;
background-image: url('<%# Eval("ProductID", "../../../Img/Northwind/Products/{0}.jpg") %>');">
<div runat="server" id="smallImage" style="width: 125px; height: 125px; background-position: center;
background-repeat: no-repeat;">
</div>
</div>
</ItemTemplate>
</asp:Repeater>