码迷,mamicode.com
首页 > Web开发 > 详细

在ASP+ 中我们如何使用 Class 而不是组件

时间:2014-05-12 15:40:53      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:style   class   tar   c   ext   color   

在ASP+ 中我们如何使用 Class 而不是组件

在ASP+ 中我们如何使用 Class 而不是组件
/*
豆腐制作 都是精品
http://www.asp888.net 豆腐技术站
如果您转贴 本文 请 保留版权信息
更多文章 都在 豆腐技术站
*/
asp+ 中我们有办法使用 预编译(pre-release)的代码 而不是 已经编译好的 二进制代码(build-in) 的组件
下面我们来看看一个例子

你可能会用到类似下面的代码:
<%@ Assembly src="test.cs" %> // Compile C# class
<%@ Assembly src="test.vb" %> // Compile VB class
在 代码的最上方 我们使用这样的 代码告诉编译器 把 文件中包含的 Class 编译到asp+ 的页面中

test.cs:

public class MyClass {

public string SaySomething() {
return "豆腐制作 都是精品";
}
}
test.vb:
public class test
readonly Property SaySomething() as string
get
SaySomething="豆腐制作 都是精品"
end get
end Property
end class

test.aspx:

<%@ Assembly Src="test.vb" %>

<html>
<script language="VB" runat=server>

Sub Page_Load(Sender as Object, E as EventArgs)

Dim Temp as New test
lblMsg.Text = temp.SaySomething()

End Sub

</script>

<body>
<asp:label id="lblMsg" runat=server/>
</body>
</html

在ASP+ 中我们如何使用 Class 而不是组件,布布扣,bubuko.com

在ASP+ 中我们如何使用 Class 而不是组件

标签:style   class   tar   c   ext   color   

原文地址:http://blog.csdn.net/u014739778/article/details/25463775

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!