How to use .net aspx page inside one .aspx page without using IFRAME tag. I have used jquery tab but its not working

351 Views Asked by At

https://jqueryui.com/tabs/#ajax

I have used 3tabs in one ASPX page. Each tabcontent having one aspx page how can i load one aspx page in to another aspx page.

my code

<script type="text/javascript">
$(function() {
        $("#Quicktabs").tabs({
            beforeLoad: function(event, ui) {
                ui.jqXHR.fail(function() {
                    ui.panel.html(
            "Couldn't load this tab. We'll try to fix this as soon as possible. " +
            "If this wouldn't be a demo.");
                });
            }
        });
    });
</script>

<div id="Quicktabs">
            <ul>
                <li><a href="../admin/Generalpage.aspx">
                    <asp:Label ID="label1" Text="General Page" runat="server"></asp:Label>
                </a></li>
                <li><a href="../admin/Home.aspx">
                    <asp:Label ID="label2" Text="LoginPage" runat="server" ></asp:Label>
                </a></li>
                <li><a href="../admin/signup.aspx">
                    <asp:Label ID="label3" Text="Signup" runat="server"></asp:Label>
                </a></li>
            </ul>
</div>
0

There are 0 best solutions below