asp 求值函数
我可以将 eval 函数的返回值保存在变量中并在任何我想要的地方使用它吗?
我可以在
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以将 eval 函数的返回值保存在变量中并在任何我想要的地方使用它吗?
我可以在
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Eval("foo")
是DataBinder.Eval(Container.DataItem, "foo")
的快捷方式。 Container.DataItem 包含您尝试获取的实际数据,而Eval()
方法仅使用反射或其他方式来允许后期绑定名称。如果您想要更好的编译时类型检查,您可以随时将 Container.DataItem 强制转换为您想要的任何类型。
您还可以在其他地方重复使用 DataBinder.Eval(),作为使用反射的快捷方式。
以下是您可以执行的操作的一些示例:
Eval("foo")
is a shortcut forDataBinder.Eval(Container.DataItem, "foo")
. Container.DataItem contains the actual data you're trying to get at, and theEval()
method simply uses reflection or other means to allow late binding on names.If you want better compile-time type checking, you can always cast the
Container.DataItem
to whatever type you want.You can also re-use
DataBinder.Eval()
elsewhere, as a shortcut for using Reflection.Some examples of what you can do are below: