RadStrip con SqlDataSource
Hola Equipo de Telerik,
tengo una tabla con los campos Id, UserId, TituloPagina, url, activo. Y dentro de un SqlDataSource tengo un select normal para que me traiga los datos relaciono el RadStrip con el SqlDataSource y me trae los tabs que para mi usuario son tres, cuando procedo a navegar por los tabs y doy un clic en cualquiera de ellos me lleva al url que quiero. Excelente! pero el problema esta en que me abre una ventana nueva y dentro de un PageView
como puedo hacer para que me aparezca dentro de la misma pagina?
aqui esta el codigo en .aspx
saludos
medio traducido a ingles jeje :)
Hi Telerik Team,
I have a table with fields Id, UserId, TituloPagina, url, active. And within a SqlDataSource I select a normal to bring me to relate the data with the SqlDataSource and RadStrip brings me the tabs for my user are three, as appropriate to navigate the tabs and I click on any of them leads me the url I want. Excellent! but the problem is that I open a new window within a PageView
How can I do to appear within the same page?
Hola Equipo de Telerik,
tengo una tabla con los campos Id, UserId, TituloPagina, url, activo. Y dentro de un SqlDataSource tengo un select normal para que me traiga los datos relaciono el RadStrip con el SqlDataSource y me trae los tabs que para mi usuario son tres, cuando procedo a navegar por los tabs y doy un clic en cualquiera de ellos me lleva al url que quiero. Excelente! pero el problema esta en que me abre una ventana nueva y dentro de un PageView
como puedo hacer para que me aparezca dentro de la misma pagina?
aqui esta el codigo en .aspx
| <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> |
| <table cellpadding="0" cellspacing="0" style="width: 100%; height: 100%"> |
| <tr> |
| <td valign="top"> |
| <telerik:RadTabStrip ID="RadTabStrip1" runat="server" DataFieldID="IdUrl" DataNavigateUrlField="url" |
| DataSourceID="SqlUrl" DataTextField="TituloPagina" MultiPageID="RadMultiPage1" Height="100%"> |
| <DataBindings> |
| <telerik:RadTabBinding PageViewID="RadPageView1" SelectedIndexField="0" TextField="TituloPagina" Depth="1" /> |
| </DataBindings> |
| </telerik:RadTabStrip> |
| <asp:SqlDataSource ID="SqlUrl" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" |
| SelectCommand="SELECT TituloPagina, url, activo, IdUrl FROM TabsUrls WHERE (UserId = @UserId)" ProviderName="System.Data.SqlClient"> |
| <SelectParameters> |
| <asp:ControlParameter ControlID="lblUsuario" Name="UserId" |
| PropertyName="Text" Type="String" /> |
| </SelectParameters> |
| </asp:SqlDataSource> |
| <asp:Label |
| ID="lblUsuario" runat="server" Visible="False"></asp:Label></td> |
| </tr> |
| </table> |
| </asp:Content> |
saludos
medio traducido a ingles jeje :)
Hi Telerik Team,
I have a table with fields Id, UserId, TituloPagina, url, active. And within a SqlDataSource I select a normal to bring me to relate the data with the SqlDataSource and RadStrip brings me the tabs for my user are three, as appropriate to navigate the tabs and I click on any of them leads me the url I want. Excellent! but the problem is that I open a new window within a PageView
How can I do to appear within the same page?