window.showModalDialog in vb.net?

  • Thread starter Thread starter Garg
  • Start date Start date
G

Garg

Hi,

Could anybody tell me please what will be the vb.net equivalent of

window.showModalDialog()

I want to open a dialog window in my vb.net application and have to
pass certain arguments to that dialog window. I also want to recieve
certain parameters from the dialog window.
How do I achieve all these functionalities??

Please help....
 
Hi,

Could anybody tell me please what will be the vb.net equivalent of

window.showModalDialog()

I want to open a dialog window in my vb.net application and have to
pass certain arguments to that dialog window. I also want to recieve
certain parameters from the dialog window.
How do I achieve all these functionalities??

go to microsoft.­public.­dotnet.­languages.­vb
 
Could anybody tell me please what will be the vb.net equivalent of

window.showModalDialog()

There is no equivalent - showModalDialog is client-side JavaScript, and
VB.NET is server-side code...
I want to open a dialog window in my vb.net application and have to
pass certain arguments to that dialog window. I also want to recieve
certain parameters from the dialog window.
How do I achieve all these functionalities??

Write it in JavaScript...
 
Back
Top