c#如何自定义函数?

 我来答
hlywan
推荐于2019-09-11 · 知道合伙人教育行家
hlywan
知道合伙人教育行家
采纳数:36573 获赞数:193530
发表省级论文10篇 参与国家级课题一个 参与校级课题若干

向TA提问 私信TA
展开全部

一、可以在ASP的源文件的<html>标记之前自定义函数

二、在Cs中先创建类,再创建函数,再调用

一、可以在ASP的源文件的<html>标记之前自定义函数,如:

<%@ Page Language="C#" CodeFile="randomName.aspx.cs" Inherits="randomName" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<script runat="server" >


protected void ImageButton_Click(object sender, ImageClickEventArgs e)
{
Label1.Text = e.X.ToString();  //点击点的X坐标
Label2.Text = e.Y.ToString();   闷耐行//点击点的Y坐标

}

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>亩肢
<body>
<form id="form1" runat="server">
<div>
<asp:ImageButton ID="ImageButton1" runat="server" OnClick="ImageButton_Click" ImageUrl="~/image1/head.jpg" /> //点击                                                        //时执行ImageButton_Click(object sender, ImageClickEventArgs e)函数
<asp:Label ID="Label1" runat="server" Text="Label" Width="74px"></asp:Label>
<asp:Label ID="Label2" runat="server" Text="Label" Width="67px"></asp:Label></div>
</form>
</body>
</html>
二、在Cs中先创建类,再创建函数,蚂哗再调用

public partial class _318 : System.Web.UI.Page
{
//  调用函数的方法,先创建一个类,如myclass,修饰符为public  static,调有时:类名.函数名,如myclass . returnst()
class myclass
{
public  static   string returnst(string  s)
{
return s;

}

}

protected void Page_Load(object sender, EventArgs e)
{

Response.Write( myclass . returnst("1223344555"));

}
}

辉色的sky
2018-02-03 · TA获得超过2254个赞
知道小有建树答主
回答量:1177
采纳率:75%
帮助的人:299万
展开全部
修扒橡饰词 函数返回值类型 函数名称(春链旁调用函数所需参数)
{
函数中要做的操作
}
示例唤高:
public double Jia(double num1,double num2)
{
return num1+num2;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式