banita
banita

Reputation: 143

can we run javascript in .net window application

hi I am developing a application in which i want to show pop up and loading image . for this i need to use jquery can it possible to run these script in .net window application form as iam not using asp .net .

Upvotes: 1

Views: 1315

Answers (2)

Ray Lu
Ray Lu

Reputation: 26668

You can add in an internet browser control onto your windows form and load/run the javascript within the browser control.

Upvotes: 2

RaYell
RaYell

Reputation: 70484

It's not possible. You must open a popups in windows applications byc creating new form instances.

new PopupForm().Show();

Upvotes: 1

Related Questions