i have a masterpage and other pages. i want to use findcontrol method to find a textbox (not on the master page) to check whether it is empty or not.
my code is as folows; Dim myContentPlaceHolder As ContentPlaceHolder = CType(Master.FindControl("MainContent"), ContentPlaceHolder) Dim UpdatePanel1 As UpdatePanel = CType(myContentPlaceHolder.FindControl("UP1"), UpdatePanel)
I'm using the asp:ChangePassword control. I would like to disable the ability for the user to enter a new username but the default shows the current user's UserName and allows editing. Ideally, I would be able to find the child control in the ChangePassword control that is the UserName textbox and set Enable=false.
I have a webdayview control (Infragistics proprietary ASP.net control) on my page. On the aspx source I've inserted some javascript (webdayview_click - clientside click event) that calls a webmethod in the codebehind. This seems to work fine, but when I insert this webdayview control into a user control and move the corresponding javascript into the aspx of the user control, it doesn't work. I can't even insert a breakpoint into the javascript function to debug it. Is there a way to make it work? I want to enable the click event of the webdayview control so that when I click on it, the javascript function calls the webmethod. Here's my code (remember it is inside a user control):
[code]...
I posted this question on the Infragistics forum but didn't get any replies. Hopefully I'll get some here. :)
i get all the error message in validation summary except one.the one is if i enter the wrong entry in old password textbox i am getting the error message in literal(ID=Failturetext).i want to show it in validation summary.is ther ary way to do this without the use of event "ChangePassword1_ChangePasswordError".
The following is trimmed down from the web.config file I'm using in a website that runs in Windows 2003 R2.
<system.web> <!-- Required to use BetterImageLink and BetterImage class --> <httpHandlers> <remove path="*.asmx" verb="*" />
[Code]....
I'm migrating the site to a new server running Windows 2008 R2. When I tested the site, I fould that the BetterImage control doesn't work. I use the BetterImage control liberally throughout the site, so this is a real problem for me. I emailed the developer and he responded that I have to change the location in the web.config where I register my custom handlers. How do I do that? And are there any other changes I need to be aware of? How different is the web.config between the two Windows versions?
I can't get my <ajax:asyncfileupload> working and I don't see why...
When outside any panel or table it is working well, but as soon as I put it in a <asp:panel> or table I get a strange error which seems to be on client-side but I don't understand what's happen here. Here is the code and code-behind and Javascript.
Here's the error:
[URL]
Here's my front-code:
[Code]....
Protected Sub fupAjoutLogo_UploadedComplete(ByVal sender As Object, ByVal e As AjaxControlToolkit.AsyncFileUploadEventArgs)
I am having quite a bit of trouble getting an accordion control to work. I downloaded the AJAX Control Toolkit (v 3.5), added the dll to my toolbox, and added an accordion control with the following code:
My button in user control doesn't work /its click event doesn't fire/. This user control is on the page that inherits from master page. Although, the user control buttons on the master page work correctly.
i am using mod_aspdotnet.so module to hosting my ASP.NET application. all was ok until i use ajax control tool kit in my aplication. I am using ajaxToolkit:CascadingDropDown to conect 2 dropdownlist in cascade. In IIS every thing works fine, but in apache there are some problems. When load the page, i got the next javascript error: 'Sys' undefined. the object signed are :
and on change of this dropdownlist i check if the its text equal to a string i show the 2 tr as below
function ValidateCity() { if ($('#<%= citiesDropDownList.ClientID %> :selected').text() == identity_CityOther) { $('#<%= otherCityTR.ClientID %>').show(); $('#<%= areasTR.ClientID %>').show(); } var city = $('#<%= citiesDropDownList.ClientID %>').val(); return IsValid((city.length != 0), '#<%= cityDiv.ClientID %>', identity_CityRequired); }
.show() isn't work at all and i don't the reason .. can any lead me to get the problem?
FYI : I tried $('#<%= otherCityTR.ClientID %>').show('slow'); and also $('#<%= otherCityTR.ClientID %>').css('visibility', 'visible'); but it doesn't work also.
i am using VS2008, 3.5 .net and have installed ajax control toolkit and added controls into toolbox, that was fine. But, i can't get any of control to work, nor it renders in design view on my page. Control source is created, page builds without errors but controls don't work. For example:
Why when a control does contain value but it's set to .Enable=False that all controls become disable (that's ok) but why that the ViewState doesn't retain the data on the next post back? If I get the UserControl without modifing its Enable state, the ViewState work between post back.
How can we disable a UserControl that all its control become disable (this part work) but all of them KEEP use the ViewState (this doesn't work)?
Clarification:
1)In the aspx.cs click button EDIT:
myControl.Enabled = false; //This produce to have all controls in myControl to be disabled.
2)In the asp.cs: click Save to leave the EDIT state:
myControl.Enabled = true; //This produce that all controls inside myControl are blank : no viewstate!
Other postback works because we do not put myControl.Enable to false.
i want to ask question i have simple regular expression pattern like "[ABC]" when i add it to me class
[Code]....
it is working good when i add A , B Or C as i need.but if i copy this pattern and paste it in my regular expression validator control it is not working
i'm trying to develop a ASP.Net control. If it based on System.Web.UI.Control id doesn't work correctly with Ajax.Net updatePanel. If I change it to System.Web.UI.WebControls.WebControl the it works fine with Ajax controls. What is the difference between them and how I implement it on Control based Control?