File list from a SmartDevice on a web page.

Hi

Can anyone offer me some advice on an issue I am having.

I am writing an appilcation that runs on Pocket IE.

I need to find a way to browse the files on the device and grab the path for a picture.

Using the normal .net frame work you can use <input type=file .....etc in the html.

This is not allowed in Pocket IE.

So I am trying to write a work around.

string[] fls = Directory.GetDirectories("\\Program Files");

ListBox1.DataSource = fls;

ListBox1.DataBind();

 

I am trying to put a list of directories to browse on the webform. I would like something that works like the OpenFileDialog in the Pocket PC Forms applications.

Unfortunatly this is only showing a list of files from the host PC and not the pocket PC.

I am running my application in the emulator.

Many thanks




Answer this question

File list from a SmartDevice on a web page.