在C#里面除了用javascript弹出信息窗口以外有没有什么c#代码可以调出弹出信息提示的窗口??

解决方案 »

  1.   

    JavaScript弹出后关闭后值就没有了 除非你返回给parent或者弹出前保存起来
      

  2.   

    <script language="javascript" id="clientEventHandlersJS">
    function window_onload() {
    Form1.txtPwd.focus();
    if(Form1.h_error.value!="")
    {
      window.alert(Form1.h_error.value);
      Form1.h_error.value = "";
    }
    }
    </script>
    this.h_error.Value = ".."
      

  3.   

    web程序好像没有。应用程序应该有。