2013-01-03 155 views
0

可能重複:
Where does Console.WriteLine go in ASP.NET?Console.WriteLine沒有顯示消息

我知道刪除是發生了我檢查了數據庫

代碼:

try 
    { 
     MyCommand.Connection.Open(); 

     int count = MyCommand.ExecuteNonQuery(); 
     if (count > 0) 
     { 
      Console.WriteLine("Delete Success!!!"); 
      //lblMessage.Text = tbTourName.Text + " Deleted!"; 
     } 
     else 
     { 
      Console.WriteLine("No Delete!!!"); 
     } 
     Console.ReadLine(); 

    } 
    catch (SqlException ex) 
    { 
     Console.WriteLine("Delete Failed coz.. " + ex.Message); 
    } 
    finally 
    { 
     MyCommand.Connection.Close(); 
    } 

做它應該顯示網頁上的消息本身?

問候 茶

+2

的回答你的問題是在以下答案:http://stackoverflow.com/questions/137660/where-does-console-writeline-go-in-asp-net –

+0

你在使用窗口應用程序嗎? –

+0

使用Response.Write() – scartag

回答

0

Console對象不屬於頁。這會在您的IDE's console中寫入一行。

如果你想顯示你的網頁上留言,然後最簡單的方法是:

Response.Write(); 
0

控制檯對象不能將內容添加到頁面。相反,將asp:label控件放到窗體上並將其Text屬性設置爲所需的狀態。