I'm figthing against a problem with FORMVIEW and MASKEDIT.When I use mask edit with a TextBox within EditItemTemplate/FormView, the current data (located in SQL database) doesn't appear!If I delete my MaskEdit tags, the current data appears.See the code below:
i use Ajax MaskEditExtender and Maskedit validator for date field.but problem is when my page load first time and i click in page that time Validator fire insted click in Submit button.my code is like
if page.isvalidate()end if.but why the maskedit validator fire when click on the page? i use VS2005.
I am facing one issue with MaskEditExtender (Ajax Control) control. If anyone knows solution please let me know.
I am having one TextBox aassociated with mask edit extender control. While editing the textbox values, value getting replaced instead of added.
Ex: Supose in my textbox if i have value as 1234, then i want to make it as 12534 so i entered 5 after 2. But am not getting result as expected, its showing as 1254 (means 3 is getting replaced with 5).
Ajax calendar control not working properly with content place holder of Master Page.Most of time Calender Control hides when mouseover with out changing date in content place holder of Master Page.same code works in normal aspx pages.
I am new to Ajax Control Toolkit, with the help of online tutorials I had created a cascading dropdown list in asp.net and tested it on my local machine. For this dropdown list data source would be an xml file (which is saved on my local machine c drive). I haven't encountered any issues until I deploy the precompiled web site on to IIS 7. When I open the web site from IIS I would see the two dropdown boxes on the web page with an error "Method error 500". I believe this error occured due to incorrect xml file path provided on IIS. I had copied xml and xsd files into IIS server C drive but it did not help out and then I created a network map and placed the xml and xsd files in that shared folder tried to access that path from web service, it's working on local machine but not on IIS. It would be great, if any one could explain me the solution.
I am new using AJAX Controls. I have downloaded the tool kit, added it to my tool box in .NET, created a web application with a simple standar button and added a confirmation extender but the page only shows the button when I click on the button it doesnt show the confirmation box.I dont have any error, I have added the script manager to my page so not error at all.
I have used Ajax control Toolkit(1.0.11119.20010) with ASP.Net 2.0.My website working fine at local network and ajax control functioning well but at server end ajax control not functioning, my website running and not throwing any error but whatever ajax control i have used is not functioning at server end..Following dlls are included in project: AjaxControlToolkit, AjaxExtensionbox, System.Design, System.Drawing.Design, System.Web.Extensions, System.Web.Extensions.Design
I am using Ajax Control Toolkit version 40412 in my asp.net 4.0 website. When I run the page in Firefox it is working good but I run the page in IE8 it is not rendering toolkit controls and putting "//" characters on the bottom of page.This is happening with every control of toolkit.
I'm using the new version of ajax control toolit v3.0.
I Installed the new version and found it worked fine as soon as i change my scripmanager to ToolkitScriptManager, However, I recentlly realised that now my sites hovermenus do not work in IIS6 (maybe 7 too) Ive tried in firefox and IE and the same.
I changed from <asp:ToolkitScriptManager> to the old <asp:ScriptManager> and they work but i need the toolkitScriptManager cause of some new controls I have used will use need it.
i have written some code to for a project im working on but the Ajax tool doesnt want to function.... I know the web method works course it gives me my results when i run it but when i run the appliaction the AJAX doesnt fire this is my web service code
[WebMethod] public string[] GetCompletionList(string text) { List<string> al = new List<string>(10); [code]...
I tested the web service.it is working fine.The problem that i want to solve is to make call to webservice. Here is the .aspx code
<asp:TextBox ID="txtFullName" runat="server"></asp:TextBox> <ajaxToolkit:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="txtFullName" ServiceMethod="FindFullName" ServicePath="../WebService.asmx" EnableCaching="true"></ajaxToolkit:AutoCompleteExtender> Webservice code : using System; using System.Web; using System.Collections; using System.Web.Services; using System.Web.Services.Protocols; using System.Configuration; using System.Data.SqlClient; using System.Data; using System.Collections; using System.Collections.Generic; /// <summary> /// Summary description for WebService /// </summary> [WebService(Namespace = "[URL]/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.Web.Script.Services.ScriptService] public class WebService : System.Web.Services.WebService { public WebService () { //Uncomment the following line if using designed components //InitializeComponent(); } [WebMethod] public string HelloWorld() { return "Hello World"; } [WebMethod] public string[] FindFullName(string prefixText) { string sql = "Select FName from Investigators Where FName like @prefixText"; SqlDataAdapter da = new SqlDataAdapter(sql,"Data Source=vvvvv;Initial Catalog=vyyyd;Persist Security Info=True;User ID=PowetttrUsyyer;Password=888888); da.SelectCommand.Parameters.Add("@prefixText", SqlDbType.VarChar, 50).Value = prefixText+ "%"; DataTable dt = new DataTable(); da.Fill(dt); List<string> liste = new List<string>(); foreach (DataRow dr in dt.Rows) { liste.Add(dr.ItemArray[0].ToString()); } return liste.ToArray(); } }
I was trying to use Ajax rounded corner control. When I set properties for panel from theme folder css file it was not working. If i provide from server control it is ok. Why it is like that?
I originally got the 'Extender controls may not be registered after PreRender' message and my app uses a lot of User Controls.I put the base.OnPreRender(e); and it took care of that problem (put in the default.aspx.cs).The control does come up but when I click on the calendar image it does nothing.Here is my source:
I have created an application in Microsoft Visual studio 2005. And I have used Ajax control tool kit version 3.031106.0. It works fine in my local system. When I hosted this on the server,I am getting this following error.
"Could not load file or assembly 'AjaxControlToolkit, Version=1.0.10606.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies"
I have three modal popups that are working properly because I test it the controls with simple plain text.
I placed a form view and a datalist in the first two modal popups and everything seems to be okay.
I need to place a user control in the third modal popup but everytime I place the user control I get a javascript error for that particular modal popup.
When I copy paste the same modal popup on a blank page and place the user control inside of the panel then the modal popup works perfectly fine.
I basically copy/paste the same code back where the other two modal popups are then I get the same JavaScript error.
I'm using the new version of ajax control toolit - 40412. Installed it due to the previous version having problems with modal popup extenders inside update panels. I Installed the new version and found it worked fine as soon as I change my scripmanager to ToolkitScriptManager, However, I recentlly realised that now my sites hovermenus do not work in IIS6 (maybe 7 too) Ive tried in firefox and IE and the same. I changed from <asp:ToolkitScriptManager> to the old <asp:ScriptManager> and they work but I need the toolkitScriptManager cause of some new controls I have used will use need it. This is all implmented in my masterPage for the site so I will post the code (there is nothing in the code behind) [Code].... It all runs fine when I run as project from Visual Studio.
I have used ajax CalendarExtender in my web site but after uploading it does how show the calander control. I have registered the control on the page itself. The page postback when i click the image on which i applied the control.
I been trying the AjaxListSearch extender control but it is not working...I added a listbox and added the ajaxlistsearchextender on it.I get this error :Error : 'Sys.Extended.UI.ListSearchPromptPosition.Top' is null or not an objectI also try an ajax combobox and same thing.... this is the error I received :Sys.Extended.UI.PositioningMode.BottomLeft is null or not an objectthis is my code :