从 Javascript 访问类方法
App_Code 文件中的类文件名“User”中有一个函数。我需要访问类中的函数
公共静态字符串GetUserRole(字符串returnValue)
放置在文件夹名称“js”中的单独 .js 文件中
请帮助
There is a function in a class file name "User" in App_Code file. I need to access a function in the class
public static string GetUserRole(string returnValue)
from javascript which is placed in a seprate .js file in the folder name "js"
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实现此目的最简单的方法是利用页面方法。我更好的方法是使用 Web 服务或通过某种类型的 http get 方法或 网络服务 。
The simplest way to accomplish this is to utilize page methods. I better way is to use a web services or expose the function though some type of http get method or a web service .
[网络方法]
public static string GetUserRole(string returnValue)
这家伙解释得很好并且有一个例子。 http://decoding.wordpress.com/2008/11/14/aspnet-how-to-call-a-server-side-method-from-client-side-javascript/
[WebMethod]
public static string GetUserRole(string returnValue)
This guy explains it pretty good and has an example. http://decoding.wordpress.com/2008/11/14/aspnet-how-to-call-a-server-side-method-from-client-side-javascript/