tags:

views:

188

answers:

2

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 .

+1  A: 

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

new PopupForm().Show();
RaYell
+2  A: 

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

codemeit