很难说,看不见你的法典,但这可能是两个问题中的一个(或两个问题)。
第一是哪类纽子? Submit button? 页: 1
如果他们提交纽芬兰,那是你的问题,因为这样做会带来完全的后退,而你提出的亚克斯要求就没有发生。
第二种情况是,根据你的舱位代码,你不把点击功能束缚在负荷上,这样,当你点击一个吨子时,其功能永远不会受到约束。
<><><>>>>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
<script type="text/javascript">
$(function()
{
$( #sourcePageBtn ).click(function()
{
$.post( Default.aspx , { name: "John", time: "2pm" }, function(data)
{
});
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="sourcePageBtn" type="button" value="button" />
<%--asp button won t work as it does full post back --%>
<asp:Button ID="sourcePageBtn" runat="server" Text="Button" />
</div>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string test = Request["name"];
}
}
如果你把它作为文字标签,也将取得同样的结果。
<script language="C#" runat="server">
protected void Page_Load ( object src, EventArgs e)
{
//Creating dynamic asp controls here
string test = Request["name"];
}
</script>