Reputation: 7
I'm using Visual Studio 2010, and i'm creating a website using C#. I'm opening a pop-up when user clicks a button.
Now i want to perform the task mentioned below:
How to achieve this?
Upvotes: 0
Views: 742
Reputation: 1587
Depends on how you are creating the website. C# is the server-side language and can be used in ASP.Net websites as well as MVC.
If ASP.Net, Ajax Control Toolkit has a modal popup:
http://www.asp.net/ajaxlibrary/ajaxcontroltoolkitsamplesite/modalpopup/modalpopup.aspx
If MVC, jQuery has a modal popup:
Upvotes: 1