C# 传值给js

来源:互联网 发布:自助抢票软件 编辑:程序博客网 时间:2024/05/18 04:00

传变量:

public static string getUrl = "hello world!";
var srcUrl = <%=getUrl()%>;

传方法值: 
public static string getUrl(){        return  "hello world!";}
var srcUrl = <%=getUrl()%>;



0 0
原创粉丝点击