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

在cs代码中定义的变量如何在页面代码中使用

2012-03-07 
在cs代码中定义的变量怎么在页面代码中使用例如cs代码中定义了publicstringstrPageType供应信息 但在

在cs代码中定义的变量怎么在页面代码中使用
例如
cs代码中定义了
public   string   strPageType   =   "供应信息 ";

但在页面中使用
<title> <%#   strPageType   %> </title>
发现是空的字符串
但没有说不存在
就是说找到strPageType但没取到值

该怎么做呢

[解决办法]
拖控件然后在CS里写代码用吧。我不喜欢在页面中绑定值。
.cs
public string strPageType = "供应信息 ";
Label1.Text= strPageType ;

[解决办法]
<title> <%=strPageType %> </title>

[解决办法]
<title> <%=strPageType%> </title>
[解决办法]
Response.Write()
说白了就是输出
[解决办法]
.net1.1:
<title id= "t1 " runat = server> </title>
page_load中写:
t1.Text = " ";//(好像是Text)

.net2.0:
直接this.Title = " ";

热点排行