When calling something like this
var e = Function._validateParams(arguments, [
{ name: "target", type: Array, elementMayBeNull: true },
{ name: "index", type: Number, integer: true },
{ name: "deserializing", type: Boolean, optional: true }
]);
what does the optional property...
I have a function which I defined in the code-behind as follows:
<WebMethod()> _
Public Shared Function testFunction() As Integer
Return 0
End Function
I'm trying to call it using Javascript on the client-side as shown below:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnablePartialRendering="True"...
Am Working with AjaxControl. Above is the Source Code.On running this am getting both error message, AjaxControl's as well as normal validator. how can i resolve this issue?
...
I am using Telerik controls in an ASP.NET Website. It takes time while sending an Ajax request.
Is it advisable to use Telerik controls?
Do Telerik controls affect the performance of the ASP.NET website?
Please let me know tricks to identify the memory leak in an ASP.NET application, specifically in aspx.cs pages.
...
Hi all,
I have a button clicking which a storedproc runs for long time in buttons onclick event.
I have a grid which will show log table data which gets updated by the storedproc.
I want to refresh the grid to show the updated log while the storedproc runs.
Is it possible?
If yes plz help.
...
Hello,
I am trying to display a dataset to my ASP.NET application. It seems that when I click the button event, the data is not displaying in the grid.
I have a basic page with the following:
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel runat="server" id="Upda...
n the login section I have a username, password textbox, submit button and forgot password link button. All are encapsulated in an update panel. On entering invalid login username / password, a lable displays error message as 'Invalid username/password'. After that when I click on forgot password, a modal pop up opens which contains user...
I had several problems with this control. Asides I cant set the backcolor property and that several times I cant place the cursor in the right tab in design, now sometimes it doesnt take the changes I make in design mode
Im working in VS2008 Pro SP1
...
Hi ,
i am using ScriptManager in my webpage. i am also using a lot of pagemethods in this page. When i look at the viewsource of the browser after the page has been rendered i find a lot of javascript which has been generated by the scriptmanager.
how can i browser cache all these scripts so that they are not loaded everytime the page...
Hi,
I am trying to populate 3 dropdown lists with using CascadingDropDown. DDLs shows make, model and color of a car respectively. Data resides in a .xml file.
The last DDL is having AutoPostBack = true and I am trying to display the values from dropdown in one label control.
I am pulling data from a webservice to populate DDLs. I a...
I created a javascript AdoNetDataContext and created a DataView from it. I was using textboxes on the template for the table columns. AdoNetDataContext can track changes if there were any on the textboxes corresponding to the table columns used. But my changes to the textbox are done via jquery. The thing is, datacontext does not recogni...
Hi all my goal is to render some message when i type a user name in the user registration page. The message is getting displayed properly at the moment. But after i click the save button without satisfying the validation criteria, the message is not getting displayed when i type some name in user registration text field.
The code is as ...
Hi all,
I am executing a storeproc in asynchronous mode from codebehind using sqlcommands BeginExecuteNonQuery or BeginExecuteReader method .
The storeproc returns multiple table as there are more than 1 Select statement.
I want to get those tables in a DataSet.
Is it possible?
Please help.
Thanks.
...
Hi,
I need to implement a centralized form validation framework for my ASP.NET(C#) 3.5 website.
And for this I have tried the following solutions-
http://blogs.msdn.com/b/mattgi/archive/2007/01/23/asp-net-ajax-validators.aspx
http://validationframework.codeplex.com/
I have added the .dll file in my project's BIN folder and for ...
Greeting;
I have asp.net dropdownlist control with Ajax CascadingDropDown control.
I also I have asp.net checkbox control. I want to enable/disable CascadingDropDown when the checkbox checked/unchecked using jquery.
I tried diffrent ways but they did not work and if I want to set enable property for the dropdownlist to false it wil...
Hi folks
I have updatepanel inside it I have tabcontainer and inside it I have panel but again inside the panel I have treeview I don't want to change the order.
let back to inside of the updatepanel I have button to add some treeview nodes programmitically and it works but I can refresh treeview or databind actually there is no data I j...
Dear all,
I have a Page that conatains a panel and an animation extender attached to it, when a button is clicked the panel appears but it gives me the above error in the title..
I know there's something wrong with the animation extender but really i don't have any idea from where to start
thanks in advance.
...
Hello. I have a ajax autocomplete extender and everything works fine. I mean sql procedure and others are fine but when I enter something to textbox nothing happened.
Why is that?
Here is my codes.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Configuration;...
Hey there,
We have a set of Skins which implements a condition for IE6 and is only supposed to load the IE6fixes.css file if it's IE6 making the request. Oddly though, when we use AJAX to update parts of the page we find a div which uses the class generalContentFormat to suddenly start using the IE6 fixes CSS.
So on the initial call ...
Hi everybody,
I am not so good with javascript and I do hope you're tougher than me. Here is my problem: I use MicrosoftAjax.cs framework and I use classes like this one :
MyClass =
{
teststring:null,
$constructor: function(test){
teststring = "test";
},
GetInformationFromName : function(inputname, BeginningSeparator, EndSeparator) {
...