0

我已经制作了一个自定义时间选择器,但我已经在 html 页面中制作了它

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>

    <script type="text/javascript">
//here goes my script
 </script>
    <title></title>
</head>
<body>
//here are my form and div's
</body>
</html>

现在我想在我的 asp.net 页面中使用它,我该怎么做?

4

1 回答 1

0

使用 asp.net 用户控件而不是 html 页面。 http://msdn.microsoft.com/en-us/library/fb3w5b53.aspx

您可以通过这种方式将其包含在您的页面中: http ://weblogs.asp.net/scottgu/archive/2006/11/26/tip-trick-how-to-register-user-controls-and-custom-controls-in -web-config.aspx

于 2012-08-17T09:43:02.067 回答