I have a page with RadSplitter with 2 RadPanes. I am setting the contenturl of those 2 radpanes on onload of the radPane holder page .
There are several buttons on the second page, can I reload the content of first RadPane when I click on any button the second RadPane page.
The code for the page which holds RadSplitter is ;
PageLoad of RadSplitter page is:
My question is : Can I reload the contenturl of RadPane1 from a button click on page WebForm2.aspx?
Thanks
There are several buttons on the second page, can I reload the content of first RadPane when I click on any button the second RadPane page.
The code for the page which holds RadSplitter is ;
| <div> |
| <telerik:RadSplitter id="RadSplitter1" runat="server" height="510" width="930" |
| Orientation="Horizontal"> |
| <telerik:RadPane id="RadPane1" runat="server" |
| > </telerik:RadPane> |
| <telerik:RadSplitBar id="RadSplitbar1" runat="server" collapsemode="Forward"></telerik:RadSplitBar> |
| <telerik:RadPane id="RadPane2" runat="server" |
| height="195" ></telerik:RadPane> |
| </telerik:RadSplitter> |
| </div> |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| string webpage1 = ""; |
| webpage1 = "WebForm1.aspx?guid=" + Request.QueryString["stguid"].ToString() ; |
| string webpage2 = ""; |
| webpage2 = "WebForm2.aspx?guid=" + Request.QueryString["guid"].ToString() ; |
| RadPane1.ContentUrl = webpage1; |
| RadPane2.ContentUrl = webpage2; |
| } |
My question is : Can I reload the contenturl of RadPane1 from a button click on page WebForm2.aspx?
Thanks