Skip to main content

ASP.NET AJAX Page Method

Page method is a static special method in ASP.NET page code behind. Using page method is an easy way to reduce post backs in your web page.

In order to use Page method, you need to follow these steps:

1. In your ASP.NET web page, add the following line inside form tag
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">

2. Inside your ASP.NET web page code behind, define a public static method as page method:
[WebMethod()]
public static string[] GetList(string[] arrList)
{
    string[] arrNewList = new string[arrList.Length + 1];
    for (int i = 0; i < arrNewList.Length; i++)
    {
        arrNewList[i] = "Item " + i;
    }
    return arrNewList;
}

3. In your aspx file, add the javascript event handler for the control's client onclick or onchange events.
<script type="text/javascript" language="javascript">
var ddlControl;
function InvokePageMethod(ddlControlId)
{
    ddlControl = document.getElementById(ddlControlId);
    var arrList = new Array();
    for(var i=0; i < ddlControl.options.length; i++)
    {
        arrList[i] = ddlControl.options[i].text;
    }
    PageMethods.GetList(arrList, OnActivitySucceed);
 
    return false;
}
 
function OnActivitySucceed(result)
{
    ddlControl.options.length = 0;
    for(var i=0; i < result.length; i++)
    {
        var option = document.createElement('option');
        option.value = i;
        option.text = result[i];
        ddlControl.options.add(option);
    }
}
</script>
Page method accepts two extra parameters besides the one defined in your method parameters. The first extra parameter is the function that will be called when the page method invokes successfully. The second extra parameter is the function that will be called when the page method fails.

Comments

Popular posts from this blog

Manage IIS 7 remotely using PowerShell and AppCmd

We can use  Windows PowerShell remoting features  to manage IIS 7 websites remotely.  Currently, remoting is supported on Windows Vista with Service Pack 1 or later, Windows 7, Windows Server 2008, and Windows Server 2008 Release 2.  Start Windows PowerShell as an administrator by right-clicking the Windows PowerShell shortcut and selecting Run As Administrator .  Enable PowerShell Remoting with Enable-PSRemoting -Force Starting a Remote Session using:  Enter-PSSession -ComputerName <COMPUTER> -Credential <USER> Now the PowerShell connected to the remote server. Any commands issued with work against the remote server. We can use the Appcmd.exe command line tool to manage remote server just as what we do locally. For example, to add an application pool: c:\windows\system32\inetsrv\appcmd add apppool /name:"Contoso" /managedPipelineMode:Integrated /managedRuntimeVersion:"v4.0" /enable32BitAppOnWin64:true To change application pool for a

X509Certificate2: The system cannot find the file specified.

When I use the new X509Certificate2(fileName, password, X509KeyStorageFlags.DefaultKeySet) to create certificate from certificate file containing private key in my web application, I got following error message: System . Security . Cryptography . CryptographicException : The system cannot find the file specified . at System . Security . Cryptography . CryptographicException . ThrowCryptogaphicException ( Int32 hr ) at System . Security . Cryptography . X509Certificates . X509Utils . _LoadCertFromBlob ( Byte [] rawData , IntPtr password , UInt32 dwFlags , Boolean persistKeySet , SafeCertContextHandle & pCertCtx ) at System . Security . Cryptography . X509Certificates . X509Certificate . LoadCertificateFromBlob ( Byte [] rawData , Object password , X509KeyStorageFlags keyStorageFlags ) at System . Security . Cryptography . X509Certificates . X509Certificate2 .. ctor ( Byte [] rawData , String password , X509KeyStorageFlags keyStorageFlags ) In orde

Entity framework code first error: OriginalValues cannot be used for entities in the Added state

When I was using Entity framework code first, I encountered an error when I tried to create an entity into database. The entity is: [ Table (" EmployeeProfile ")]     public partial class EmployeeProfile     {         [ Key ]         [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]         public int EmployeeProfileID { get; set; }         [ ForeignKey ("Employee")]         public int EmployeeID { get; set; }         public virtual Employee Employee { get; set; }         [ ForeignKey (" Profile ")]         public int ProfileID { get; set; }         public virtual Profile Profile { get; set; }         [ Required ]         [ StringLength (255)]         public string ProfileValue { get; set; }     } When creating the entity, some entities have the ProfileValue="", this causes the EntityValidationException with the detailed message " OriginalValues cannot be used for entities in the Added state ". I want to allow the Prof