Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > msgbox error ค่ะ ฟ้อง error แบบนี้ค่ะ Showing a modal dialog box or when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly



 

msgbox error ค่ะ ฟ้อง error แบบนี้ค่ะ Showing a modal dialog box or when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly

 



Topic : 041092



โพสกระทู้ ( 137 )
บทความ ( 0 )



สถานะออฟไลน์




ฟ้อง error แบบนี้ค่ะ
Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
คือพอดีโปรแกรมที่เขียนใช้ .net 3.5 แต่ server ที่เอาขึ้นไปใช้จริงเป็น .net 2.0 ค่ะ
เลยอยากทราบวิธีที่จะทำให้สามารถรัน msgbox ใน .net 2.0 ได้โดยที่ไม่ต้องแก้ไขโค๊ตอะค่ะ เพราะมันใช้งานเยอะมากๆเลยค่ะ มีวิธีไหนบ้างคะ
เขียนคำสั่ง msgbox("คำเตือน!") ไว้แบบนี้ค่ะ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-03-31 18:36:57 By : somooo View : 4119 Reply : 5
 

 

No. 1



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



สถานะออฟไลน์


เอ๋ ปกติ framework 3.0 - 3.5 จะใช้ framework 2.0 อยู่แล้วนี่คะ
นี่ winapp ป่าวคะ
Error นีเหมือนเคยเห็นว่ามาจาก webapp ที่ไปเรียก message box มาใช้น่ะค่ะ






Date : 2010-04-01 08:44:18 By : blurEye
 


 

No. 2



โพสกระทู้ ( 108 )
บทความ ( 0 )



สถานะออฟไลน์


MsgBox("คำเตือน!") is mainly used for a windows desktop application. If you
want to show a pop up message on a web application you can use a Javascript
function.
Date : 2010-04-01 09:30:45 By : njnight
 

 

No. 3



โพสกระทู้ ( 108 )
บทความ ( 0 )



สถานะออฟไลน์


ลองเพิ่มคลาสนี้ดูอ่ะ
Code (C#)
using System; 

using Microsoft.VisualBasic; 

using System.Text; 

using System.Collections; 

using System.Web; 

using System.Web.UI; 

using System.Web.UI.WebControls; 

  


namespace TestWebMsgApp 

{ 

      public class WebMsgBox 

      { 

            protected static Hashtable handlerPages = new Hashtable();             

            private WebMsgBox() 

            { 

            } 

  

            public static void Show(string Message) 

            { 

                  if (!(handlerPages.Contains(HttpContext.Current.Handler))) 

                  { 

                        Page currentPage = (Page)HttpContext.Current.Handler; 

                        if (!((currentPage == null))) 

                        { 

                              Queue messageQueue = new Queue(); 

                              messageQueue.Enqueue(Message); 

                              handlerPages.Add(HttpContext.Current.Handler, messageQueue); 

                              currentPage.Unload += new EventHandler(CurrentPageUnload); 

                        } 

                  } 

                  else 

                  { 

                        Queue queue = ((Queue)(handlerPages[HttpContext.Current.Handler])); 

                        queue.Enqueue(Message); 

                  } 

            } 

  

            private static void CurrentPageUnload(object sender, EventArgs e) 

            { 

                  Queue queue = ((Queue)(handlerPages[HttpContext.Current.Handler])); 

                  if (queue != null) 

                  { 

                        StringBuilder builder = new StringBuilder(); 

                        int iMsgCount = queue.Count; 

                        builder.Append("<script language='javascript'>"); 

                        string sMsg; 

                        while ((iMsgCount > 0)) 

                        { 

                              iMsgCount = iMsgCount - 1; 

                              sMsg = System.Convert.ToString(queue.Dequeue()); 

                              sMsg = sMsg.Replace("\"", "'"); 

                              builder.Append("alert( \"" + sMsg + "\" );"); 

                        } 

                        builder.Append("</script>"); 

                        handlerPages.Remove(HttpContext.Current.Handler); 

                        HttpContext.Current.Response.Write(builder.ToString()); 

                  } 

            } 

      } 

  

}  




เวลาใช้ก็

WebMsgBox.Show("คำเตือน!");
Date : 2010-04-01 09:34:45 By : njnight
 


 

No. 4



โพสกระทู้ ( 137 )
บทความ ( 0 )



สถานะออฟไลน์


นี่น้องสาวพี่ใช้ vb.net นะ
ขอบคุณทุกคำตอบนะค่ะ พอดีเป็นเว็บ แล้ว msgbox เนี่ยมันจะเห็นที่ฝั่ง server ฝั่ง ไคลแอ้นจะมองไม่เห็นมันเลยออกมาแบบนี้นะค่ะ
Date : 2010-04-01 11:07:14 By : somooo
 


 

No. 5



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



สถานะออฟไลน์


น่ะไง เอา messagebox ของ winform มาใช้จรืงๆด้วยอ่ะพี่ส้มโอ
เปลี่ยนไปใช้ alert แทนค่ะ อย่างที่พี่แหม่มให้มาโอมากๆค่ะ
Date : 2010-04-01 11:18:42 By : blurEye
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : msgbox error ค่ะ ฟ้อง error แบบนี้ค่ะ Showing a modal dialog box or when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่