當前位置: 首頁>>代碼示例>>C#>>正文


C# UpdatePanel.GetType方法代碼示例

本文整理匯總了C#中System.Web.UI.UpdatePanel.GetType方法的典型用法代碼示例。如果您正苦於以下問題:C# UpdatePanel.GetType方法的具體用法?C# UpdatePanel.GetType怎麽用?C# UpdatePanel.GetType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Web.UI.UpdatePanel的用法示例。


在下文中一共展示了UpdatePanel.GetType方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AddSPNotification

 public static void AddSPNotification(UpdatePanel updSettings, string text, bool isRefresh)
 {
     if (String.IsNullOrEmpty(text) == false)
     {
         StringBuilder stringBuilder = new StringBuilder();
         stringBuilder.AppendLine(string.Format("SP.UI.Notify.addNotification(\"{0}\");", text));
         if (isRefresh == true)
         {
             stringBuilder.AppendLine("SP.UI.ModalDialog.commonModalDialogClose(SP.UI.DialogResult.OK, 1);");
             stringBuilder.AppendLine("window.frameElement.commitPopup();");
         }
         ScriptManager.RegisterClientScriptBlock(updSettings, updSettings.GetType(), Guid.NewGuid().ToString(), stringBuilder.ToString(), true);
     }
 }
開發者ID:Fabiarm,項目名稱:spsmfiles,代碼行數:14,代碼來源:Helper.cs

示例2: AjaxWarning

 /// <summary>
 /// 區域警告(AJAX|帶信息提示)
 /// </summary>
 /// <param name="page"></param>
 /// <param name="content"></param>
 public static void AjaxWarning(UpdatePanel UP, string id, string msg)
 {
     ScriptManager.RegisterStartupScript(UP, UP.GetType(), "Warning" + id, "Warning('" + id + "','" + msg + "');", true);
 }
開發者ID:wangyi3330,項目名稱:wpfTest,代碼行數:9,代碼來源:PromptBLL.cs

示例3: AjaxShowMsg

 /// <summary>
 /// 顯示提示信息(AJAX)
 /// </summary>
 /// <param name="page"></param>
 /// <param name="content"></param>
 public static void AjaxShowMsg(UpdatePanel UP, string content, int type)
 {
     i++;
     ScriptManager.RegisterStartupScript(UP, UP.GetType(), "ShowMsg" + i, "ShowMsg2('" + content + "',1);", true);
 }
開發者ID:wangyi3330,項目名稱:wpfTest,代碼行數:10,代碼來源:PromptBLL.cs

示例4: AjaxRegisterScript

 /// <summary>
 /// 注冊腳本(AJAX)
 /// </summary>
 /// <param name="page"></param>
 public static void AjaxRegisterScript(UpdatePanel UP, string script)
 {
     i++;
     ScriptManager.RegisterStartupScript(UP, UP.GetType(), "js" + i, script, true);
 }
開發者ID:wangyi3330,項目名稱:wpfTest,代碼行數:9,代碼來源:PromptBLL.cs

示例5: CreateClientScript

        protected void CreateClientScript(String sJavaScriptFunction, UpdatePanel oUpdatePanel)
        {
            Guid gMessage = Guid.NewGuid();

            ScriptManager.RegisterStartupScript(oUpdatePanel, oUpdatePanel.GetType(), gMessage.ToString(), sJavaScriptFunction, true);
        }
開發者ID:traveler33,項目名稱:Control,代碼行數:6,代碼來源:ucEFormDesign.ascx.cs

示例6: Show

 public static void Show(UpdatePanel objUpdatePanel, string Mensaje)
 {
     string alert = String.Format("alert('{0}');", Mensaje);
     Guid guidKey = Guid.NewGuid();
     ScriptManager.RegisterStartupScript(objUpdatePanel, objUpdatePanel.GetType(), guidKey.ToString(), alert, true);
 }
開發者ID:kaganyuksel,項目名稱:esm,代碼行數:6,代碼來源:rt.cs

示例7: RegistraJavascript

 /// <summary>Método que registra um javascript</summary>
 public static void RegistraJavascript(UpdatePanel updPanel, string javascript)
 {
     string msgScript = javascript;
     ScriptManager.RegisterStartupScript(updPanel, updPanel.GetType(), msgScript, msgScript, true);
 }
開發者ID:fabiogalante,項目名稱:TBI,代碼行數:6,代碼來源:Util.cs

示例8: ShowUpdatePanelAlert

 protected void ShowUpdatePanelAlert(UpdatePanel updatePanel,string message)
 {
     ScriptManager.RegisterStartupScript(
         updatePanel,
         updatePanel.GetType(),
         Guid.NewGuid().ToString(),
         " alert('"+ message + "');",
         true);
 }
開發者ID:raviroyind,項目名稱:nChanger,代碼行數:9,代碼來源:AppBasePage.cs


注:本文中的System.Web.UI.UpdatePanel.GetType方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。