博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET 2.0学习笔记之Object Tag Syntax
阅读量:6771 次
发布时间:2019-06-26

本文共 806 字,大约阅读时间需要 2 分钟。

Object Tag Syntax: <object runat="server" />

Object tags enable page developers to declare and create instances of variables using a declarative, tag-based syntax. The following example demonstrates how the object tag can be used to create an instance of an ArrayList class.

The object will be created automatically at run time and can then be accessed through the ID "items".

language="C#" runat=server       Page_Load(Object sender, EventArgs e) {         ArrayItems.Add("One");         ArrayItems.Add("Two");         ArrayItems.Add("Three");         MyList.DataSource = ArrayItems;         MyList.DataBind();      }             id="ArrayItems" class="System.Collections.ArrayList" runat=server                           Here is a value: #
cptrk.ashx?id=8eb29da3-1fae-4479-91ea-17ed211f5b43

转载于:https://www.cnblogs.com/Maxer/archive/2006/03/27/360235.html

你可能感兴趣的文章
dvi转vga接口图及相关接法
查看>>
java排序——选择排序
查看>>
Slide:了解Oracle critical patch update
查看>>
用grunt搭建自动化的web前端开发环境-完整教程
查看>>
SSH密钥对批量认证Python脚本
查看>>
大型网络初试题
查看>>
Java API实现国际化资源文件
查看>>
Centos下Yum安装PHP5.5,5.6,7.0
查看>>
文本处理三剑客之sed基础用法
查看>>
IOS 各版本下载地址
查看>>
【行为型】- 迭代器模式
查看>>
邮件系统5大绝招解决中毒难题!!!
查看>>
hessian应用示例
查看>>
json_decode和json_encode的用法
查看>>
maven中引用JDK中的tools.jar
查看>>
Linux共享库注入后门
查看>>
程序员必备! 向您推荐一款APP开发和测试的工具!
查看>>
【SQL Server学习笔记】XML、分层、空间数据
查看>>
ElsticStake安装之Logstash6.4.0 安装(二)
查看>>
chrome 快捷键
查看>>