明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

在ASP+ 中我們怎么使用 Class 而不是組件

[摘要]/*豆腐制作 都是精品http://www.asp888.net 豆腐技術(shù)站如果您轉(zhuǎn)貼 本文 請 保留版權(quán)信息*/asp+ 中我們有辦法使用 預編譯(pre-release)的代碼 而不是 已經(jīng)編譯...
/*
豆腐制作 都是精品
http://www.asp888.net 豆腐技術(shù)站
如果您轉(zhuǎn)貼 本文 請 保留版權(quán)信息
*/
asp+ 中我們有辦法使用 預編譯(pre-release)的代碼 而不是 已經(jīng)編譯好的 二進制代碼(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>


作者:豆腐()