一个简单的问题!!!!!(50分)

  • 主题发起人 主题发起人 weilin
  • 开始时间 开始时间
W

weilin

Unregistered / Unconfirmed
GUEST, unregistred user!
Response.Content := Response.Content+'<P>'+'Host : '+Request.Host+'</P>';
Response.Content :=Response.Content+'<P>'+'PathInfo : '+Request.PathInfo+'</P>';
请问Response.Content := 后面的Response.Content有什么作用?

 
怎么看都像是变量啦,
 
应该是代表一个string型的变量
看看这个注释

Specifies the HTML code rendered within the area of the TcxWebCustomControl control.

property Content: TStrings;

Description
Use the Content property to specify the HTML code, which is rendered within the area occupied by the control. Applying a style to the control means that this style is applied to each element of the HTML code, represented by the Content property. An exception is when a particular element already has a style assigned.
 
我主要是看不懂他所起的作用?不加也可以,但很多书上都这么写,实在搞不懂!!!!
 
它的意思应该与
S:=S+'AAA'意思相同
假如s:='BBB',那么s:=s+'AAA'后s的值就是'BBBAAA'
 
蒋劲刚,的看法我也是同意。
 
Response.Content就是Response的内容了,什么都不加当然可以,但没内容Response有什么用
 
多人接受答案了。
 
后退
顶部