如何制作一个简单的智能客户端程序?
一点击即能跳出一个窗口,
上面显示"你好".另外,制作智能客户端程序,需要对VS.NET做些什么配置?

解决方案 »

  1.   

    参考MSDN中文站点
    http://www.microsoft.com/china/msdn/events/webcasts/Webcast/smartclient.mspx
      

  2.   

    onclick="alert('你好');"
    把这句放在接受事件的标签中,如:body、button......
      

  3.   

    Response.Write("<script>window.open('ok.htm','_blank','toolbar=no,location=no,directories=no,status=yes,fullscreen=yes,menubar=no,scrollbars=no,resizable=no,left=400,top=300,width=300,height=100')</" + "script>")
      

  4.   

    public void MessageBox(string strText ,Page objPage)
    {
    /* 1、编写:
    *  2、功能:在客户端弹出对话框
    *  3、参数:string strText 对话框的文本信息;Page objPage 对话框的所在页面 */
    string IidScript,strWindow;
    strWindow="window.alert('"+strText+"')";
    IidScript = "<script>"+strWindow+"</script>";
    objPage.RegisterClientScriptBlock("failure",IidScript);
    }
      

  5.   

    是呀,先做几个Web Servcice试试.
      

  6.   

    http://blog.csdn.net/goody9807/archive/2004/08/21/80770.aspx
      

  7.   

    一个简单的WINFORM已经符合这个要求了,
    把程序放到网站,在IE URL里打上这个EXE的路径,
    客户端需要NET FRAMEWORK,配置一下工具管理的。NET FRAMEWORK