Ajax.NET Professional 5.11.2.1 examples online
I put the new examples for the Microsoft .NET Framework 1.1 and 2.0 online:
- Version 1.1: http://www.schwarz-interactive.de
- Version 2.0: http://dotnet2.schwarz-interactive.de
You can download both projects (C#) including the Ajax.NET Professional library at http://www.schwarz-interactive.de. The Visual Basic .NET examples will follow in the next days, sorry about that.
2 Comments
Comments have been disabled for this content.
t800t8 said
Please check your quick guide!
Because you use
protected void Page_Load(object sender, EventArgs e)
{
AjaxPro.Utility.RegisterTypeForAjax(typeof(_Default));
}
so the method getServerTime() should be
function getServerTime()
{
_Default.GetServerTime(getServerTime_callback); // asynchronous call
}
Michael Schwarz said
Thanks, fixed that and added the full namespace.