4

我正在使用一个干净的测试页面,并加载一个user control带有 jQ​​uery 的.load()函数。我得到的当前错误是:
GET http://localhost:27950/OCDB/test.ascx 403 (Forbidden)

这是我的页面代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<%@ Register Src="~/test.ascx" TagPrefix="uc1" TagName="test" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>This is a test.</title>

     <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            $('#ucPlaceholder').load('test.ascx');
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div id="ucPlaceholder">
    </div>
    </form>
</body>
</html>

我的用户控制代码:

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="test.ascx.cs" Inherits="test" %>

<input placeholder="test input"/>

如您所见,它超级简单。我的直接猜测是该页面没有拾取Register. 谁能告诉我哪里出错了?

4

1 回答 1

3

我认为您不能使用 jQuery 直接调用用户控件。
但是您可以使用通用 http 处理程序来帮助它。

http://blog.ovesens.net/2008/12/dynamically-loading-asp-net-user-controls-with-jquery/
http://www.codeproject.com/Articles/117475/Load-ASP-Net-用户控制-动态-使用-jQuery

于 2013-03-19T10:20:41.497 回答