Reputation: 143
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
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
Reputation: 70484
It's not possible. You must open a popups in windows applications byc creating new form instances.
new PopupForm().Show();
Upvotes: 1