Hi!
i am using Rad Window to display an other aspx site, this action is fired on a button Click Event. The Problem is when i Click on the button the Window pops up, but display the page in which the button is located. Here is my source code
Ajax Settings
JavaShript Code
Window Declaration
Event Registratio
I tried to load different websites in my solution none of them werde displayed, when i enter the google url, then it works. Could you please help me to solve this problem.
greetings
Martin
i am using Rad Window to display an other aspx site, this action is fired on a button Click Event. The Problem is when i Click on the button the Window pops up, but display the page in which the button is located. Here is my source code
Ajax Settings
<asp:ScriptManagerProxy ID="SM_Login" runat="server" /> |
<telerik:RadAjaxManagerProxy ID="RAM_Login" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="btnRequestAccount"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="btnRequestAccount" /> |
<telerik:AjaxUpdatedControl ControlID="AccountRequest" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManagerProxy> |
JavaShript Code
<script type="text/javascript"> |
function ShowRequestAccount() |
{ |
window.radopen("Support.aspx","AccountRequest"); |
return false; |
} |
</script> |
Window Declaration
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Vista"> |
<Windows> |
<telerik:RadWindow Skin="Vista" ID="AccountRequest" runat="server" Title="Request Account" Height="400px" |
Width="300px" Left="150px" ReloadOnShow="true" Modal="true" /> |
</Windows> |
</telerik:RadWindowManager> |
Event Registratio
btnRequestAccount.Attributes.Add("onclick","return ShowRequestAccount();"); |
I tried to load different websites in my solution none of them werde displayed, when i enter the google url, then it works. Could you please help me to solve this problem.
greetings
Martin