Hi there,
I have a page where i make some calls via javascript ajaxRequest (ex. <%= RadAjaxManager1.ClientID %>.ajaxRequest('Move'); )
I also have a URL rewrite module as a http module. Whenever something causes a post back, the rewrite module gets called :
The absolute path always contains the called page.
Now the problem is that whenever I am calling the "ajaxRequest" through java (skipping the post back), the authorize request method in the rewrite module is called WITHOUT a page set (just the folder). This obviously gives a 404 and thus, the AjaxRequest method in the back-end is never called.
Does anyone know why this is happening? Any work arounds?
Thanks In advance!
I have a page where i make some calls via javascript ajaxRequest (ex. <%= RadAjaxManager1.ClientID %>.ajaxRequest('Move'); )
I also have a URL rewrite module as a http module. Whenever something causes a post back, the rewrite module gets called :
protected virtual void Rewriter_AuthorizeRequest(object sender, EventArgs e){ HttpApplication app = (HttpApplication)sender; absolutePath = app.Request.Url.AbsolutePath; ........ ........ ........The absolute path always contains the called page.
Now the problem is that whenever I am calling the "ajaxRequest" through java (skipping the post back), the authorize request method in the rewrite module is called WITHOUT a page set (just the folder). This obviously gives a 404 and thus, the AjaxRequest method in the back-end is never called.
Does anyone know why this is happening? Any work arounds?
Thanks In advance!