在ASP+ 中我們怎么使用 Class 而不是組件
發(fā)表時間:2023-08-08 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]/*豆腐制作 都是精品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>
作者:豆腐()