Can everyone (Microsoft, LibreOffice, Euro-Office, Apple) just come together and use one standard format?
I appreciate that everyone is turning around and saying, "but our format is better! Use our format!" but it just seems a bit pointless.
I just want to read and edit a document, for goodness sake...part of the reason I try and avoid the documents that people share is because it's too much of a headache. I don't care if you use Windows, Mac or Linux, but if I can't read the damned thing because of your preference I'm going to reply saying, "I can't open that and I'm not buying a new computer to read a 2 page document."
I noticed this was already happening within my organization; my teams location will change between remote and on-site without me having to do anything. Is it possible this is live already for select customers?
While LibreOffice is not pleased to see a new competitor, they are absolutely correct in stating that Euro-Office using a MS file standard as a default is not being truly "European." Using a MS standard just means Euro-Office is just a "bastardized MS Office Suite." (Wasn't a major purpose of Euro-Office was to get away from being captive and enslaved to MS's Office Suite??)
Question
ultimate99
I have a contact form for people to send me email.
1. I tried it using my email but didn't receive anything.
2. I want a confirmation message to appear for the user when they send an email, how do i do that?
I created the contact form using textbox control and not the Wizard in VS 2008.
Here's the code i have in contact page.
protected void PageLoad(object sender, EventArgs e) { if (IsPostBack) { SmtpClient sc = new SmtpClient("smtp.DOMAIN.com"); StringBuilder sb = new StringBuilder(); MailMessage msg = null; sb.Append("Email from: " + txtEmail.Text + "\n"); sb.Append("Message: " + txtMessage.Text + "\n"); try { msg = new MailMessage(txtEmail.Text, "email here, i know", "Message from website", sb.ToString()); sc.Send(msg); } catch (Exception ex) { //something bad happend Response.Write("Something bad happend!"); } finally { if (msg != null) { msg.Dispose(); } } } }and added this to web.config
Link to comment
https://www.neowin.net/forum/topic/843130-aspnetc-sending-mail-and-confirmation/Share on other sites
1 answer to this question
Recommended Posts