如何从类文件(服务器端)向.aspx文件(客户端)发出请求?

发布于 2024-07-14 01:50:38 字数 331 浏览 5 评论 0原文

这对我来说是不同的问题。 我使用 ASP.NET2.0 和 AJAX、C#。

客户端定期从 HTML(客户端)向任何类(.cs)文件(服务器端)发出请求。 然后通过对象或数据库对该类文件进行更新。

但我想基于该对象从类文件(服务器端)向 HTML 文件(客户端)发出请求。

我还使用哈希表来包含键并与该对象相关。

如果您无法理解,那么我会尝试以不同的方式向您解释我的问题,我会给您一个简单的示例:我正在从 javascript 调用任何函数到我的类函数,现在我想从类函数调用到 javascript 函数。

请简要解释一下, 请帮我。

This is different problem for me. I used ASP.NET2.0 with AJAX,C#.

Regularly client make request from HTML (client side) to any class(.cs) file(server side). And then make updation on that class files through Object or in database.

But I want to make request from Class file (server side) to HTML file (client side) based on that Object.

I m also used HashTable for containing Key and related to that Object.

If you are not able to understand then I try to Explain you my problem differently, I will give you one simple Example :I m calling any function from javascript to my class function, now I want call from class function to javascript function.

please explain me in brief,
Please Help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

瀟灑尐姊 2024-07-21 01:50:38

实际上,您可以在部分页面回发期间更改 UpdatePanel 的内容。 因此,如果客户端单击 ASPX 页面上的某些内容会更改服务器端的对象,则您可以在该往返过程中更新 ASPX 页面上的控件。

如果您需要偶尔更新视图而无需用户交互,则 ASP.NET AJAX 计时器控件 会有所帮助。

You can actually change the contents of an UpdatePanel during a partial page postback. So if the client clicks something on your ASPX page which alters your object on the server-side, you can update the controls on the ASPX page during that round trip.

If you need to simply update your view occasionally with no user interaction, then the ASP.NET AJAX Timer control will help.

原谅过去的我 2024-07-21 01:50:38

可以通过三种方法从客户端与服务器端代码进行交互:

  1. 更新面板:这使用部分回发,其中页面本质上对服务器进行完整回发,然后忽略除更新面板中的内容之外的所有内容,然后发送结果返回。

  2. 页面方法 - 这可能不是您正在寻找的内容,因为页面方法要求该方法在页面本身上是静态的。

  3. Web 服务方法 - 这些是您可以从 aspx 代码后面使用的相同 Web 服务,但您需要页面上的脚本管理器才能从 javascript 使用它们。

There are three methods for interacting with server side code from the client side:

  1. Update panels: This uses a partial postback where the page essentially does a full postback to the server and then ignores everything except whats in the update panel then sends the result back.

  2. Page methods - This might not be quite what you are looking for since page methods require that the method be static on the page itself.

  3. Web service methods - These are the same web services you may use from your aspx code behind but you will need a script manager on the page to use them from javascript.

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