In my asp.net page I have a VBScript method which is doing some tasks like storing an image in the users C:\images folder.
After it performs that function, I need to call a VB.net function which is in the code behind of the same page.
Is there any way I can do that??
Thanks
First of all, you wont be able to do anything on the client machine’s hard drive. The browser wont let you do that (security). That said, to call a method on the server, look into javascript and ajax. Since you are using vb.net, I think you should start here.