Forum Moderators: open
The other problem is that the users who will have access to this Intranet are all set to Restricted in XP and cannot install plugins. So rule out a third-party pluggin viewer install for the users.
Can I use an OBJECT tag to make it work? Can someone show me to proper syntax if that would work?
So, let me restate the question here... I need a way to display a live publisher document into a webpage (active server pages, if that matters) without using client side plugins.
Anyone?
<object classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width=200 height=200>
<param name="filename" value="mymovie.avi">
<embed src="mymovie.avi" width="" height="" autostart="false"></embed>
</object>
But they advised to change the CLSID to the correct Publisher number. How do I find out the right CLSID? I'd like to give this a shot, but have no idea where to begin finding the CLSID...i tried google, but no luck yet.
Should this format work?
When the user clicks on the link, they get that generic prompt to open, save, cancel, etc. If they click on open excel opens right then and they get to see the spreadsheet. If the click save, they can down load it.
At first I was trying to make it just automatically do the excel thing. But this only worked for some. And I never figured out why. The great people here gave me some clues and this is what I ended up with. Gives users the option of open or save and works every time for all users so far. No prompts to log in.
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment; filename="myexcel.xls"
server.execute("myexcel.xls")
I ended up just automatically launching the document within publisher. Works like a charm. It is not embedded, but it still gets the job done.
Thanks for all of your help!