欢迎来到天天文库
浏览记录
ID:24564472
大小:55.00 KB
页数:4页
时间:2018-11-15
《asp.net中对象使用的实例--》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、Asp.net中对象使用的实例>><%PageLanguage="c#"runat="server"%><scriptrunat="server">voidPage_Load(){pi.Text=Math.PI.ToString();exp.Text=Math.E.ToString();}voidUpdate(objectsender,EventArgse){try{doubledblInput=Convert.ToDouble(input.Text);sqrt_input.Text=dblInput.ToStrin
2、g();sqrt_result.Text=Math.Sqrt(dblInput).ToString();abs_input.Text=dblInput.ToString();abs_result.Text=Math.Abs(dblInput).ToString();log_input.Text=dblInput.ToString();log_result.Text=Math.Log10(dblInput).ToString();}catch{sqrt_result.Text="";abs_result.Text="";log_result.
3、Text="";errormessage.Text="Erroroccurredininput";}}</script><html><head></head><body><hr/>Pi=<asp:Labelid="pi"runat="server"></asp:Label><br/>ExponentialConstant=<asp:Labelid="exp"runat="server"></asp:Label>
4、<hr/><formrunat="server">Input=<asp:textboxid="input"runat="server"></asp:textbox><asp:buttonid="Button1"onclick="Update"runat="server"text="Submit"></asp:button></form><hr/>Squarerootof<asp:Labelid="sqrt_input"runat="serv
5、er"></asp:Label>=<asp:Labelid="sqrt_result"runat="server"></asp:Label><br/>AbsoluteValueof<asp:Labelid="abs_input"runat="server"></asp:Label>=<asp:Labelid="abs_result"runat="server"></asp:Label><br/>Logarithmof<as
6、p:Labelid="log_input"runat="server"></asp:Label>=<asp:Labelid="log_result"runat="server"></asp:Label><br/><asp:Labelid="errormessage"runat="server"></asp:Label><br/></body></html>>>>>这篇文章来自..,。
此文档下载收益归作者所有