[CLOSED] opening explorer on client when clicking the listbox

Answered
0
0

Hello,

I have  a line in my code, when clicking the listobx “explorer.exe” is opening on the client and show the directory \\10.0.1.23\…. where files are stored showed in the listbox.

when I upload my code/project to my iis server and click the listbox nothing happens, probably because he is trying to open explorer on the server where my project is running 10.0.1.23

any ideas how to solve this, when click the listbox explorer on the client is opening in defined folder?

 

Private Sub ListBox1_Click(sender As Object, e As EventArgs) Handles ListBox1.Click

Process.Start(“explorer.exe”, “\\10.0.1.23\Fileserver\” & Page1.PlantID & “\” & Label999.Text)

End Sub

 

thanks in advance,

bjorn

  • You must to post comments
Best Answer
0
0

It’s not possible with any browser in any OS with any web technology. The only thing you can do in a browser is use <input type=’file’>. Wisej makes it easier and quite flexible with the Upload control.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.