从 Javascript 访问类方法

发布于 2024-12-10 09:10:54 字数 164 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心如荒岛 2024-12-17 09:10:54

实现此目的最简单的方法是利用页面方法。我更好的方法是使用 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 .

一身软味 2024-12-17 09:10:54

[网络方法]
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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文