首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

[]为何这里的数据绑定表达式不显示任何值

2012-04-01 
[求助]为何这里的数据绑定表达式不显示任何值啊各位帮忙解释一下,为什么下面的Label1和3都不显示出来? 是

[求助]为何这里的数据绑定表达式不显示任何值啊
各位帮忙解释一下,为什么下面的Label1和3都不显示出来? 是不是哪里还要设置才可以?
我百度了很久都没有找到相关的. 都只说直接放在控件属性值那里就可以了.
先谢谢各位来帮忙的朋友了.

HTML code
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %><!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>    <form id="form1" runat="server">    <div>        <asp:Label ID="Label2" runat="server" Text="Labe3333"></asp:Label>        <br />        <asp:Label ID="Label1" runat="server" Text="<%# TextBox2.Text %>"></asp:Label>        <asp:Label ID="Label3" runat="server" Text="<%# 2+2 %>"></asp:Label>        <asp:TextBox ID="TextBox2" runat="server" Text="111111" ></asp:TextBox>    </div>    </form></body></html>


[解决办法]
探讨

引用:
引用:

<asp:Label ID="Label1" runat="server" Text="<%=TextBox2.Text %>"></asp:Label>
<asp:Label ID="Label3" runat="server" Text="<%=2+2 %>"></asp:Label>
……

热点排行