msgbox
-
if(SqlDataReader read.Read()) { if (read["rooms"].Equals("tv lounge")) { ??how can i display a msgbox here if this condition is true in asp.net with C#???? }
Chohan
-
if(SqlDataReader read.Read()) { if (read["rooms"].Equals("tv lounge")) { ??how can i display a msgbox here if this condition is true in asp.net with C#???? }
Chohan
You can't show a message box directly from C# in ASP.net You have to use a javascript Alert
Kind Regards, Gary
My Website || My Blog || My Articles
-
You can't show a message box directly from C# in ASP.net You have to use a javascript Alert
Kind Regards, Gary
My Website || My Blog || My Articles
-
No this is wrong. This will display a message box on the server and will not be visible by them client. Javascript is the way to go
Kind Regards, Gary
My Website || My Blog || My Articles