how to run outlook on client
-
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run. I don't want to use "mailto:",how can I do?
magichi wrote:
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run.
Are you working on web application. And want to run outlook on client machine. You can not. Because browser does not have suffcient permission to run an exe on a machine.
Cheers!! Brij Visit my Blog: http://brijbhushan.net
Check my latest Article :ViewState - Various ways to reduce performance overhead -
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run. I don't want to use "mailto:",how can I do?
Try this using System.Diagnostics; Process.Start("outlook.exe");
-
Try this using System.Diagnostics; Process.Start("outlook.exe");
-
I tried it,but it doesn't work. somebody says the reason is it's server code,not client code,so it doesn't work
Another one function go() { w = new ActiveXObject("WScript.Shell"); w.run('notepad.exe'); return true; } onLoad="go();" event in form
-
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run. I don't want to use "mailto:",how can I do?
magichi wrote:
I don't want to use "mailto:
Why?
magichi wrote:
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run
Think about it - what happens if the user doesn't have Outlook installed? What if it's installed to a different location? You are writing a web based application, which users expect to honour the security sandbox. Solutions like shelling out using ActiveX scripting have the effect of giving users and experience they wouldn't expect, probably wouldn't like, and certainly won't work on none Microsoft operating systems.
I have CDO, it's OCD with the letters in the right order; just as they ruddy well should be
Forgive your enemies - it messes with their heads
-
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run. I don't want to use "mailto:",how can I do?
You might be looking into <a href="mailto:email@domain.com">open outlook new mail window</a> For details, click here[^]
Anurag Gandhi.
http://www.gandhisoft.com
Life is a computer program and every one is the programmer of his own life.
My latest article: Group GridView Data -
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run. I don't want to use "mailto:",how can I do?
Like Pete said... Respect the security sandbox. That being said, I have in a closed intranet setting implemented solutions that intertwine both client based binaries and server based web pages. But only in a closed intranet setting where that can be properly administered and controlled would that be something to be considered. If the purpose is to launch the user's outlook, that is what the mailto directive was created for. A safe way to launch a user's email system from a web app.
-
magichi wrote:
I don't want to use "mailto:
Why?
magichi wrote:
I wanna run outlook on client,just like input "D:\PROGRA~1\MICROS~4\Office12\OUTLOOK.EXE" into run
Think about it - what happens if the user doesn't have Outlook installed? What if it's installed to a different location? You are writing a web based application, which users expect to honour the security sandbox. Solutions like shelling out using ActiveX scripting have the effect of giving users and experience they wouldn't expect, probably wouldn't like, and certainly won't work on none Microsoft operating systems.
I have CDO, it's OCD with the letters in the right order; just as they ruddy well should be
Forgive your enemies - it messes with their heads
-
Another one function go() { w = new ActiveXObject("WScript.Shell"); w.run('notepad.exe'); return true; } onLoad="go();" event in form
-
Like Pete said... Respect the security sandbox. That being said, I have in a closed intranet setting implemented solutions that intertwine both client based binaries and server based web pages. But only in a closed intranet setting where that can be properly administered and controlled would that be something to be considered. If the purpose is to launch the user's outlook, that is what the mailto directive was created for. A safe way to launch a user's email system from a web app.
-
Customs wanna open outlook just like run outlook on their client.They don't wanna see the send mail box,they wanna see the number of unread mails,or other information that could see when they open the outlook.How could I do?
magichi wrote:
Customs wanna
Please use full words when you write here. It's truly painful for some of us older guys to read stuff like this.
magichi wrote:
They don't wanna see the send mail box,they wanna see the number of unread mails,or other information that could see when they open the outloo
If they are using outlook and an exchange server, just have the exchange server admins activate the webmail front end??? I think that is what you want.