ajaxcontroltoolkit

Animated gif freezes in UpdateProgress in IE8

我们两清 提交于 2019-12-04 19:09:04
I am using update progess to show the animated gif saying "Loading..". I am testing in IE 8 and the animation freezes. I have come to know that IE 6 & 8 have a bug to handle this and have found certain supportive links such as here and here as well , but i'm not sure how to apply in update progress to resolve my issue? Please help! Thanks! When this happened to me, the browser's processor was actually pegging out due to KB 2000262 , there is a fix, if this is your problem: UpdatePanel Async Postsback slow in IE…Part 3 来源: https://stackoverflow.com/questions/7204378/animated-gif-freezes-in

AjaxControlToolkit, ComboBox style

一个人想着一个人 提交于 2019-12-04 18:17:26
I am with a little problem with the arrow image of a ComboBox control (AjaxControlToolkit). I define this style: .WindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer button { margin: 0; padding: 0; background-image: url(../icons/windows-arrow.gif); background-position: top left; border: 0px none; height: 21px; width: 21px; } I set this style on combobox, but the control are showing the border of the textbox before the arrow: Look here , the border aren't showing! How can I hide this border? This is working fine for me, I have the following css in my page head (though it

Multiple UpdatePanelAnimationExtender Controls AjaxControlToolKit

旧街凉风 提交于 2019-12-04 14:13:55
I am having a problem with the UpdatePanelAnimationExtender and multiple update panels. What I want to happen is for the panel to fade out, update, and then fade back in. However, it fades out all the panels and only fades the one I updated back in. Apparently this is a rather common problem with UpdatePanelAnimationExtender, but I can't seem to find a solution. Would anyone happen to know of a way to work around this problem? Thanks in advance. Here is some sample code: <asp:UpdatePanel ID="update1" runat="server" UpdateMode="Conditional"> //--My Code goes in here </asp:UpdatePanel> <cc1

how to display captcha image in imageView

元气小坏坏 提交于 2019-12-04 07:03:54
问题 i am trying to make an android app for my school. this is the web site of my school. the captcha images source something like https://obs.ankara.edu.tr/Telerik.Web.UI.WebResource.axd?type=rca&isc=false&guid=247583ef-bfad-4cfe-82d1-8ae8902b07ae so i can not display this source on imageview. how can i display this captcha image? 回答1: Try this project to get an idea: A very easy to use, minimal options, on-device Captcha system for Android applications 来源: https://stackoverflow.com/questions

Calendar Extendar is not showing Starting Date of one textbox to selected date of another textbox

浪子不回头ぞ 提交于 2019-12-04 06:35:35
问题 I'll try to simplify my query as much as possible. I am using to textboxes one is for starting date and one is for ending date. starting date is working well but in ending date it's start date should be selected date of starting date textbox. Here is my Code. protected void txtSRPStartDate_TextChanged(object sender, EventArgs e) { txtSRPEndingDate_CalendarExtender.StartDate = Convert.ToDateTime(txtSRPStartDate_CalendarExtender.SelectedDate); txtSRPEndingDate_CalendarExtender.EndDate =

AjaxToolkit: the last TabContainer on the page is focused on page load

左心房为你撑大大i 提交于 2019-12-04 03:19:25
问题 I'm using more than one TabContainer on a page in an ASP.NET project and I noticed a really strange behavior: when the page is loaded the focus jumps to the last TabContainer on the page, causing it to scroll down. I don't explicitly focus on any control so I don't understand where this is coming from. I also switched places between the controls and it is always the last one that is focused. The TabContainers don't have any fancy settings, this is basically what they look like: <cc1

Setting active tab in ASP.NET Ajax TabContainer causes entire container to disappear

 ̄綄美尐妖づ 提交于 2019-12-04 01:38:50
问题 I have an ASP.NET page that uses the ASP.NET Ajax Control Toolkit TabContainer. In the Page_Load event, I am hiding some of the tabs based on the data given to the page. I then want to make one of the tabs active based on the value of an (optional) query string parameter. So I have: protected void Page_Load ( object sender, EventArgs e ) { if ( !this.IsPostBack ) { // Tabs with no data are hidden in here LoadDataIntoTabs(); PreselectCorrectTab(); } } private void PreselectCorrectTab () { if (

Mask Textbox view for a phone number

人盡茶涼 提交于 2019-12-04 01:32:55
问题 i am trying to format a text box so that when the users can type in a phone number and it would automatically put it in the following format :(999)999-9999 i tried using the MaskedEditExtender, it works but it does the complete opposite of what i need. when i click on the field it shows the correct format, but once i mouse out it still only shows 9999999999 how can i do it so that the user ONLY types in numbers and it puts dashes and parentheses where it's supposed to automatically(which it

Javascript in update panel doesn't work after partial postback

十年热恋 提交于 2019-12-03 13:59:53
<script type="text/javascript"> $(function () { $('.datePicker').datetimepicker({ dateFormat: 'dd/mm/yy' }); }); </script> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="Server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:TextBox ID="TextBox1" class="datePicker" runat="server"></asp:TextBox> <asp:UpdatePanel ID="holder" runat="server" UpdateMode="Always" ChildrenAsTriggers="true"> <ContentTemplate> <asp:DropDownList runat="server" ID="ddl_RespondBy" AutoPostBack="true" OnSelectedIndexChanged="ddl_SelectedIndexChanged">

AsyncFileUpload file size limit

倾然丶 夕夏残阳落幕 提交于 2019-12-03 03:40:18
When I was using AsyncFileUpload to upload 100KB image, I got no error message., but image not uploaded. I can upload 75KB image succssfully. I am using IIS 6.0. <cc1:AsyncFileUpload ID="afuImg" Width="400px" runat="server" UploaderStyle="Traditional" ThrobberID="Throbber2" OnClientUploadError="uploadErrorImg" OnClientUploadStarted="StartUploadImg" OnClientUploadComplete="UploadCompleteImg" /> <httpRuntime maxRequestLength = "1024000" executionTimeout="54000" enableHeaderChecking ="false" /> kamui You can upload files with a combined size of up to 2GB, but it requires some modifications in