是否可以以编程方式从ASP.NET中的服务器代码触发回发?我知道有可能做一个Response.Redirect或Server.Transfer重定向到一个页面,但有没有办法触发回发到服务器代码中的同一页面(即而不使用javascript提交表格的技巧)?
答案 0 :(得分:10)
Asp.net回发是从客户端发起的(通常是表单提交)。我不确定你想要实现的目标。某些服务器端page lifecyle事件已经执行,您尝试执行的操作是再次引发先前的事件处理程序。
答案 1 :(得分:2)
回发是由FORM提交引起的。您需要从客户端启动它们。
答案 2 :(得分:1)
您可以使用Ajax请求执行此操作。您必须让页面轮询服务器。服务器没有任何方法可以在不请求信息的情况下将信息推送到浏览器。但是有一些在后台运行的Javascript并且每5秒(或更多,根据您的需要)轮询服务器可能是最好的解决方案。
APPEND
如果你走这条路线,你可以让服务器发回一个是或否,或者甚至只返回0或1,这取决于是否应该执行回发。根据您的需要,很多人没有理由实际使用AJAX的XML部分。只需运行一个简单的异步请求,可能带有一些查询字符串变量,然后返回一个简单的单词,甚至是一个数字作为响应。这样,如果不需要,您可以保留用于创建和解析XML的javascript。
答案 3 :(得分:1)
如果您希望从服务器发起通信,而不是轮询,请查看Microsoft的SignalR。最简单的上下文,SignalR作为示例代码的一部分是聊天应用程序。您将能够从后面的代码发起消息,并将其作为页面上的javascript事件接收。
要发送的服务器代码:
using System;
using System.Web;
using Microsoft.AspNet.SignalR;
namespace SignalRChat
{
public class ChatHub : Hub
{
public void Send(string name, string message)
{
// Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(name, message);
}
}
}
捕获服务器消息的客户端代码是' chat.client.broadcastMessage'的覆盖:
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call to broadcast messages.
chat.client.broadcastMessage = function (name, message) {
// Html encode display name and message.
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div />').text(message).html();
// Add the message to the page.
$('#discussion').append('<li><strong>' + encodedName
+ '</strong>: ' + encodedMsg + '</li>');
};
// Get the user name and store it to prepend to messages.
$('#displayname').val(prompt('Enter your name:', ''));
// Set initial focus to message input box.
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub.
chat.server.send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});
</script>
答案 4 :(得分:0)
对于那些使用较新版本.NET的用户,必须使用Page.ClientScript.GetPostBackEventReference
,因为'this.GetPostBackEventReference(...)'
已过时。也可能是Page.ClientScript.RegisterStartupScript(...