|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;空话少说,间接进进主题.
文件:
Calculate.aspx
bin/Calculate.cs
bin/Calculate.bat
步骤:
1.Calculate.cs
namespaceCalculate
{
usingSystem;
publicclassmath{
publicString_color;
publicintAdd(inta,intb)
{
returna+b;
}
publicintSub(inta,intb)
{
returna-b;
}
publicintMul(inta,intb)
{
returna*b;
}
publicStringColor
{
get{
return_color;
}
set{
_color=value;
}
}
}
}
2.Calculate.bat
csc/t:library/out:Calculate.dllCalculate.cs
3.实行Calculate.bat
4.Calculate.aspx
<%@ImportNameSpace="Calculate"%>
<scriptlanguage="c#"runat="server">
publicStringcolor;
voidDoAdd(ObjectSrc,EventArgsE)
{
mathmath=newmath();
Message.Text=math.Add(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();
math.Color=C.Value;
color=math.Color;
}
voidDoSub(ObjectSrc,EventArgsE)
{
mathmath=newmath();
Message.Text=math.Sub(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();
math.Color=C.Value;
color=math.Color;
}
voidDoMul(ObjectSrc,EventArgsE)
{
mathmath=newmath();
Message.Text=math.Mul(Convert.ToInt32(A.Value),Convert.ToInt32(B.Value)).ToString();
math.Color=C.Value;
color=math.Color;
}
</script>
<fontid=Caucolor=<%Response.Write(color);%>>用ASP+写得浅易盘算器</font>
<formrunat="server">
<inputid="A"runat="server"/>
<inputid="B"runat="server"/>
<inputid="C"runat="server"/>
<asp:buttonText="Add"runat="server"/>
<asp:buttonText="Sub"runat="server"/>
<asp:buttonText="Mul"runat="server"/>
</form>
Result:<asp:labelid=Messagerunat="server"/>
5.总结
其实太烂,但愿妙手多多指教.(无穷朴拙)
我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。 |
|