PDA

View Full Version : Upload images


mohan
08-27-2003, 09:20 PM
Hi Antun,


I want to upload an image using laszlo and that should be display in the tab slider. How can i do in laszlo.




Thanks Antun,

Rudresh.

antun
08-27-2003, 09:50 PM
You can't post a file directly from the Flash player.

My recommendation would be to deal with this in a small HTML window. You could pop up the window using the LzBrowser service:


LzBrowser.loadURL('javascript:new Window(...)')


-Antun

huntedman
08-23-2005, 12:35 AM
Using .Net as a backend and by storing files in a session, all I need was a small page that gives the possibility to upload files. I gave the fileupload.aspx the look and feel of laszlo (using an image of my default layout), so it neatly integrated into my application.


LzBrowser.loadURL('javascript:var a = window.open("fileupload.aspx",height=600,width=800);');

Best regards,


Arthur.