Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: arkadia93
  • Order by date
  1. arkadia93

    System.Net.Mail mail message

    I am building up a message body, is this the correct way to escape chars in doing so? message.Body += "<FORM name='frmReferredEmail' action=\"thank_you_referred.aspx?email=\" + strEmailAddress + \"&remail=\" + strEmailAddressRecommended + \"&rpolicy=\" + strPolicyNumber + '\" method='get'>";
  2. arkadia93

    passing variables to and from email

    Is it possible when using System.Net.Mail to pass some variables to the email that can be manipulated and sent on from the email to for example another web page?
  3. arkadia93

    Using stringreader to set email body to html page

    I've found an alternative way of doing this which seems to work : message.IsBodyHtml = true; StreamReader sr = new StreamReader(Server.MapPath("referred_email.html")); string s = sr.ReadToEnd(); message.Body = s;
  4. arkadia93

    Using stringreader to set email body to html page

    Would I be right doing something like this? message.IsBodyHtml = true; //Message body content HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://www.contoso.com/"); //then read the response into a string with the httpWebResponse class...
  5. arkadia93

    Using stringreader to set email body to html page

    Thanks, do you have an example?
  6. arkadia93

    Using stringreader to set email body to html page

    I am trying to send out an email that is based upon an HTML page. Is it possible to read the HTML page into something like a StringReader and then set the Mail.Body equal to the StringReader? If it is, does anybody have any code samples?
  7. arkadia93

    email validation

    Does anybody have an email validation script in Javascript?
  8. arkadia93

    pass parameter from html to asp page

    Figured it out, thanks!
  9. arkadia93

    pass parameter from html to asp page

    Sorry about that, is there a way I can pass the value in the user input box to the asp page without using ASP?
  10. arkadia93

    pass parameter from html to asp page

    I get a message box 'Do you want to open or save this file?' for the ASP page, rather than the page being opened. Do you know why this might be?
  11. arkadia93

    pass parameter from html to asp page

    I am trying to pass a parameter from a HTML page to an ASP page, but it doesn't work. Here is my HTML page : <html> <head/> <body> <FORM name="frmPost" action="test2.asp?user=<%=user%>" method="post"> <input type="text" name="user"> <input type="submit" value="Submit"> </form> </body>...
  12. arkadia93

    getting at Outlook inboxes

    Hi, The inboxes are stored on Exchange 5.5. What I need to do is to have an app with for example a dropdownlist where the user can select a login, and then view their unread emails in their inbox (possibly writing their inbox to a table where there is a delete option for each row for deleting...
  13. arkadia93

    getting at Outlook inboxes

    Harley, Thanks for the link, but I have already got this far with the app. What I am trying to find out is how I can actually get at DIFFERENT users inboxes (not the default), so I'm looking for some code examples where the logon is set and what syntax to use in this situation.
  14. arkadia93

    getting at Outlook inboxes

    I need to write an application that can be used to read the contents of different users Outlook inboxes. I have not done any VB coding in a long time so I am struggling with it a bit...can anybody point me in the right direction, and perhaps provide some code samples? Many thanks!
  15. arkadia93

    Newbie question

    I am completely new to Exchange Server, I have been asked to write some code to link in with it. Can anybody tell me exactly what Exchange Server is and does, and how it links in with Outlook etc? Many thanks!
  16. arkadia93

    Gaining access to user inboxes via .NET code

    Apologies, I am a complete Exchange newbie, but I need to be able to write some code to gain access to users inboxes...can anybody point me in the right direction or post some sample code? Many thanks!
  17. arkadia93

    SSRS 2000 and VS 2005

    Thanks, I'll give it a try when I get home.
  18. arkadia93

    SSRS 2000 and VS 2005

    Thanks Geert...this means that I will have to create any new reports on my old machine which has VS 2003, but once created I can update all my reports on my new machine...it's not ideal, but at least it is possible ;)
  19. arkadia93

    SSRS 2000 and VS 2005

    I have just purchased a new laptop with Vista OS, and I have VS 2005 installed for all my development. What I want to know is, is it possible to create Reporting Services 2000 reports in VS 2005? My web host still only supports RS 2000, so since I am not planning to install VS 2003, I need to...
  20. arkadia93

    Getting at outlook inbox programmatically

    Although if that is a problem, it wouldn't cause any problems to rewrite it as a Windows app.

Part and Inventory Search

Back
Top