user2992534
user2992534

Reputation: 7

Pop-up window while creating a webpage

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

Answers (1)

Brian P
Brian P

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:

http://jqueryui.com/dialog/

Upvotes: 1

Related Questions