您的位置:首页 > 编程语言 > ASP

十天学会ASP.net之第三天

2008-05-01 04:48 267 查看
.Pqq793{display:none;}

一、Label控件:

Text标签所显示的文本
范例:<ASP:Labelid="lblMessage"Text="aaa"runat="server"/>
需要注意的是我们不能遗漏runat="server"字样,还有所有的WEB控件都要包含在<formrunat="server"></form>中间

<html>
<head><title>Label.ASPx</title></head>
<body>
<formrunat="server">
ASP:Labelid="lblMessage"runat="server"/>
</form>
</body>
</html>
--------------

<html>
<head><title>Label.ASPx</title></head>
<body>
<formrunat="server">
ASP:Labelid="lblMessage"runat="server"/>
</form>
</body>
</html>
共2页:上一页1
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: