WEB开发网
开发学院网页设计JavaScript JS调用CS里的带参方法 阅读

JS调用CS里的带参方法

 2012-12-12 11:57:37 来源:WEB开发网   
核心提示:js调用CS里的方法有很多,我用一种简单的方法,JS调用CS里的带参方法,如下CS里public string test() { return "Hello World"; }public string test() { return "Hello World"; }

js调用CS里的方法有很多,我用一种简单的方法,如下
CS里

public string test()
{
return "Hello World";
}

public string test()
{
return "Hello World";
}
aspx 页面

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<mce:script type="text/javascript" ><!--
var demo=function(){
var b= "<%=test() %>";
alert(b);
}

// --></mce:script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="button" id="id1" onclick="demo()" value="JS调用CS" />
</div>
</form>
</body>
</html>


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<mce:script type="text/javascript" ><!--
var demo=function(){
var b= "<%=test() %>";
alert(b);
}

// --></mce:script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="button" id="id1" onclick="demo()" value="JS调用CS" />
</div>
</form>
</body>
</html>

上面的是不带参数的,要是后台CS里方法带参数就要注意了。。
CS:

public string test(string a)
{
return a;
}
[c-sharp] view plaincopy
public string test(string a)
{
return a;
}
aspx:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<mce:script type="text/javascript" ><!--
var demo=function(){
var a="Hello World";
var b= '<%=test("'+a+'") %>';//这里一定注意单引号和双引号的使用!!!!!
alert(b);
}

// --></mce:script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="button" id="id1" onclick="demo()" value="JS调用CS" />
</div>
</form>
</body>
</html>


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<mce:script type="text/javascript" ><!--
var demo=function(){
var a="Hello World";
var b= '<%=test("'+a+'") %>';//这里一定注意单引号和双引号的使用!!!!!
alert(b);

1 2  下一页

Tags:JS 调用 CS

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接