回 帖 发 新 帖 刷新版面

主题:asp.net(1.1框架)+ajax的问题(在线等待)

我在www.ajaxpro.info的站点上下载了一个ajaxpro.dll的程序集引用到我的程序里 
在后台的cs页面当中写的代码如下:


using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using AjaxPro;
namespace AjaxDemo
{
    /// <summary>
    /// WebForm1 的摘要说明。
    /// </summary>
    public class WebForm1 : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.Button Button1;
        protected System.Web.UI.WebControls.Button Button2;
        protected System.Web.UI.WebControls.Label lblmsg;
    
        private void Page_Load(object sender, System.EventArgs e)
        {
            // 在此处放置用户代码以初始化页面
            //Button1.Attributes.Add("onclick","Call_Server");
            AjaxPro.Utility.RegisterTypeForAjax(typeof(WebForm1));
            
        }
        [AjaxPro.AjaxMethod]
        public string ShowMessage()
        {
            string stra= "ajax的方法,可以被客户端调用";
            return stra;
        }

        #region Web 窗体设计器生成的代码
        override protected void OnInit(EventArgs e)
        {
            //
            // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
            //
            InitializeComponent();
            base.OnInit(e);
        }
        
        /// <summary>
        /// 设计器支持所需的方法 - 不要使用代码编辑器修改
        /// 此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {    

        }
        #endregion

        private void Button1_Click(object sender, System.EventArgs e)
        {
        
        }
    }
}

前台的aspx页面的代码如下:

<%@ Page language="c#" Codebehind="index.aspx.cs" AutoEventWireup="false" Inherits="AjaxDemo.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
    <HEAD>
        <title>index</title>
        <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
        <meta name="CODE_LANGUAGE" Content="C#">
        <meta name="vs_defaultClientScript" content="JavaScript">
        <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
        <script language="javascript">
        function ShowMessage_callback(response)
        {
            alert(response.value);
        }
        function Call_Server()
        {
            AjaxDemo.WebForm1.ShowMessage(ShowMessage_callback);
        }
        function c()
        {
            alert("asdf");
        }
        </script>
    </HEAD>
    <body>
        <form id="Form1" method="post" runat="server">
            <FONT face="宋体">
                <asp:Label id="lblmsg" runat="server" Width="256px" Height="40px">Label</asp:Label></FONT>
            <asp:Button id="Button2" runat="server" Width="184px" Text="Button"></asp:Button><FONT face="宋体">&nbsp;
            </FONT><INPUT style="WIDTH: 88px; HEIGHT: 24px" type="button" value="Button">
        </form>
    </body>
</HTML>


现在有一下问题,麻烦高手给解答一下。
1.我的前台的aspx页面的文件写的有问题没(javascript),要是有应该如何改成。
2.现在有2个按钮。1个是web控件(asp:button),一个是html控件,2个按钮是否都能够调用函数。如果可以应该怎么写。


谢谢,麻烦高手给解答一下。

回复列表 (共3个回复)

沙发

javascript应该没什么问题
web控件调用函数方法:
后台Page_Load中写:
Button2.Attributes["onclick"]="Call_Server()";
html控件直接在前台页面中添加事件onclick="Call_Server()"

板凳

大哥,代码我写了。但是没有任何反应。现在应该咋办啊。给指导指导.

3 楼

AjaxDemo.WebForm1.ShowMessage(ShowMessage_callback);这个方法里面是不缺参数?不太记得了。

我来回复

您尚未登录,请登录后再回复。点此登录或注册