Make sure that the AjaxPro library is registered in your project, and
the dll is in the \bin directory,

Make sure that the following is in the Web.Config file

<httpHandlers>
<add verb="POST,GET" path="ajaxpro/*.ashx"
type="AjaxPro.AjaxHandlerFactory, AjaxPro"/>
</httpHandlers>

And the following is in the Page_Load event

private void Page_Load(object sender, System.EventArgs e)

{
// Put user code to initialize the page here
      AjaxPro.Utility.RegisterTypeForAjax(typeof(AjaxVB.WebForm1));
}

After that, view the source to see if you have 4 include statements
prototype.js, core.js, classname.ashx and one other.

It should work after that.

Joseph Guadagno


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info/

Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---

Reply via email to