message boxes in web applications
-
i am making a web application in ASP.net using VB.net i want to pop up message boxes on the browser as soon as some operation has been performed on the data base. like if i have added a record, i want to pop up a message box saying so. the messagebox.show is only for console applications how do i use it for the web applications?
-
i am making a web application in ASP.net using VB.net i want to pop up message boxes on the browser as soon as some operation has been performed on the data base. like if i have added a record, i want to pop up a message box saying so. the messagebox.show is only for console applications how do i use it for the web applications?
Look at javascript's alert command. Michael I firmly believe that any man's finest hour, the greatest fulfillment of all that he holds dear, is that moment when he has worked his heart out in a good cause and lies exhausted on the field of battle - victorious. Vince Lombardi (1913-1970)
-
Look at javascript's alert command. Michael I firmly believe that any man's finest hour, the greatest fulfillment of all that he holds dear, is that moment when he has worked his heart out in a good cause and lies exhausted on the field of battle - victorious. Vince Lombardi (1913-1970)
-
i am making a web application in ASP.net using VB.net i want to pop up message boxes on the browser as soon as some operation has been performed on the data base. like if i have added a record, i want to pop up a message box saying so. the messagebox.show is only for console applications how do i use it for the web applications?
I'd recommend using an HTML table (or a Table web control) and putting a message and an OK button in the table to simulate a message box. That's a good way to provide user feedback in a web app. Actual pop up messagebox controls through javascript (e.g. Alert()) have their purpose but for simple feedback they can be a little annoying (at least to me). - Mike ------------------------- "No human being would stack books like that." - Dr. Venkman
-
i am making a web application in ASP.net using VB.net i want to pop up message boxes on the browser as soon as some operation has been performed on the data base. like if i have added a record, i want to pop up a message box saying so. the messagebox.show is only for console applications how do i use it for the web applications?
Hi,I find a link by google than can solve this problem. You can take a look...althought I still cannot understand very well. http://www.dotnet247.com/247reference/msgs/25/127821.aspx ;P