类型“TextBox”的控件“ctl00_ContentPlaceHolder1_TextBoxName”必须放在具有 runat=server 的窗体标记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类型“TextBox”的控件“ctl00_ContentPlaceHolder1_TextBoxName”必须放在具有 runat=server 的窗体标记相关的知识,希望对你有一定的参考价值。
做一个注册页面,还没链接到数据库,运行后反复出现如题错误,加form标签也总有问题,具体代码太长,贴在如下地址里:http://www.douban.com/note/30098167/
在百度里搜了很多解决方案,都不能解决,请问是什么原因造成的和如何修改?
母版页代码如下:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Content.master.cs" Inherits="usecontral_Content" %>
<%@ Register Src="usecontral/head2.ascx" TagName="head2" TagPrefix="uc2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<div style="text-align: center">
<uc2:head2 ID="Head2_1" runat="server" />
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</div>
</body>
</html>
<form id="form1" runat="server">。。
</from>
在你的母板页body里面套上这个。。。 参考技术A 看了你的代码了 panel里的没问题 拷出来我这边能运行
应该是你母版页上的问题
可以把母版页代码贴出来 我看看
你模板页中还有用户控件 usecontral/head2.ascx
只要里面一个有错 你页面加载时就会报错
C#遍历窗体所有控件或某类型所有控件
//遍历窗体所有控件, foreach (Control control in this.Controls) {
//遍历后的操作... control.Enabled = false; }
遍历所有TextBox类型控件或者所有DateTimePicker控件
foreach (Control control in this.Controls) {
//遍历所有TextBox... if (control is TextBox) { TextBox t = (TextBox)control; t.Enabled = false; }
//遍历所有DateTimePicker... if (control is DateTimePicker) { DateTimePicker d = (DateTimePicker)control; d.Enabled = false; } }
以上是关于类型“TextBox”的控件“ctl00_ContentPlaceHolder1_TextBoxName”必须放在具有 runat=server 的窗体标记的主要内容,如果未能解决你的问题,请参考以下文章