Hi guys,
having an issue with the RadAjaxPanel when being used on a page with a URL rewrite, when accessing the page on the normal URL there is no error and the panel updates just fine. example:
and backend code:
My conclusion is that the rewriter and the panel is clashing somehow. Is there any way to fix this or work around it?
Thanks in advance.
having an issue with the RadAjaxPanel when being used on a page with a URL rewrite, when accessing the page on the normal URL there is no error and the panel updates just fine. example:
- page.aspx?id=1 (this works)
- /custum/url/1 - which rewrites to page.aspx?id=1 (this does not work)
I am using "urlrewriter.net" (http://urlrewriter.net/).
Code for page:
01.
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
02.
<
AjaxSettings
>
03.
<
telerik:AjaxSetting
AjaxControlID
=
"sndButton"
>
04.
<
UpdatedControls
>
05.
<
telerik:AjaxUpdatedControl
ControlID
=
"RadAjaxPanel1"
LoadingPanelID
=
"LoadingPanel1"
></
telerik:AjaxUpdatedControl
>
06.
</
UpdatedControls
>
07.
</
telerik:AjaxSetting
>
08.
</
AjaxSettings
>
09.
</
telerik:RadAjaxManager
>
10.
11.
<
telerik:RadAjaxLoadingPanel
ID
=
"LoadingPanel1"
runat
=
"server"
MinDisplayTime
=
"1"
>
12.
</
telerik:RadAjaxLoadingPanel
>
13.
14.
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
LoadingPanelID
=
"LoadingPanel1"
>
15.
16.
<
asp:Label
runat
=
"server"
ID
=
"lbl"
Text
=
"time"
></
asp:Label
>
17.
18.
</
telerik:RadAjaxPanel
>
19.
<
asp:Button
ID
=
"sndButton"
runat
=
"server"
Text
=
"Send"
OnClick
=
"sndButton_Click"
/>
and backend code:
1.
Protected
Sub
sndButton_Click(sender
As
Object
, e
As
EventArgs)
2.
lbl.Text =
Date
.Now
3.
End
Sub
My conclusion is that the rewriter and the panel is clashing somehow. Is there any way to fix this or work around it?
Thanks in advance.