Link to home
Start Free TrialLog in
Avatar of mmq2006
mmq2006

asked on

Outlook Form (like web form)

I want to create an outlook form (like an asp.net form) to be sent to customers & collect their responses in a DB. Example: Survey.

How can I do this?
Avatar of David Lee
David Lee
Flag of United States of America image

Hi, mmq2006.

The answer depends on you knowing what email clients the recipients use.  If they all use Outlook, then you can design a cutom Outlook form that'll do this.  If they don't all use Outlook but do use a client that faithfully supports HTML (which rules out Outlook 2007), then you can design the survey in HTML and send it in the body of the message.  The recipients will fill it out and click a submit button just as they would if they took the survey out at a web site.  The key is knowing what client your target audience uses and knowing how well those clients support HTML standards.
Avatar of mmq2006
mmq2006

ASKER

They all are using OUTLOOK. i tried designing custom outlook form, but did not succeed....

Any more hints??
What happened with the custom form?  Why didn't it succeed?  
Avatar of mmq2006

ASKER

when i send it, it sends blank email.

also, i do not know how can I program the submit button?
Can you post a copy of your form online at a location where I can have a look at it?
Avatar of mmq2006

ASKER

if I develop my servuy as a web page using C#, is it possible to send it by outlook email. not a link; but a survey in the email as a body.

if yes, how? Thanks.
ASKER CERTIFIED SOLUTION
Avatar of David Lee
David Lee
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mmq2006

ASKER

-- However, you could use C# to generate a web page and send the resulting HTML via Outlook.  --
How do I do that?