With this jquery I'm importing the entire page, but I can not get through html divs in the middle of the query, just in the end
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Getting Started with jQuery</title>
<script src="Scripts/jquery-3.0.0.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#divteste').load('AdminPagina.aspx')
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="divteste">
<span>Test inside div</span>
</div>
</form>
</body>
**texto em negrito**</html>