<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'SPAM'</title><link>http://forums.asp.net/search/SearchResults.aspx?q=&amp;tag=SPAM&amp;orTags=0&amp;o=DateDescending</link><description>Search results matching tag 'SPAM'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Mails using SMTP</title><link>http://forums.asp.net/thread/3222893.aspx</link><pubDate>Wed, 10 Jun 2009 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3222893</guid><dc:creator>iGulfam</dc:creator><description>&lt;p&gt;Whenever I send mail using SMTP from my website it always goes to SPAM/Junk/Bulk folder of recipient. Is there a way I can make my mails secure so that users may get mails in Inbox and not in SPAM/Junk/Bulk?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Preventing Spam in Star Rating Systems</title><link>http://forums.asp.net/thread/3215292.aspx</link><pubDate>Sat, 06 Jun 2009 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3215292</guid><dc:creator>Mr. Bluesummers</dc:creator><description>&lt;p&gt;Hey everyone,&lt;/p&gt;&lt;p&gt;I&amp;#39;m an intermediate user of ASP.net working on a new &amp;#39;link directory&amp;#39; type site.&amp;nbsp; I&amp;#39;d like to allow users to rate them using a typical jQuery star rating system without having to log in.&amp;nbsp; However, I&amp;#39;d also like to prevent users from spamming the heck out of the system.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I feel that if I had some identification for each user, I could regulate their interaction with the system.&amp;nbsp; I&amp;#39;d use the Cache object, but that could easily be cleared to circumvent the system- right?&amp;nbsp; Has anyone else tried to do this before? Will I &lt;i&gt;have&lt;/i&gt; to implement logins and registration?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>All my email goes directly to spam</title><link>http://forums.asp.net/thread/2734971.aspx</link><pubDate>Mon, 10 Nov 2008 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2734971</guid><dc:creator>RajibRoy</dc:creator><description>Hi ,

I am using the following code to send email but all my email goes directly to spam

Please help me.



&lt;p&gt;&amp;nbsp;Dim mailMessage As System.Net.Mail.MailMessage = New 
System.Net.Mail.MailMessage()&lt;br /&gt;
mailMessage.From = New System.Net.Mail.MailAddress(FromEmail)&lt;br /&gt;
mailMessage.To.Add(New System.Net.Mail.MailAddress(txtEmail.Text.Trim()))&lt;br /&gt;
mailMessage.Priority = Net.Mail.MailPriority.Normal&lt;br /&gt;
&lt;br /&gt;
mailMessage.IsBodyHtml = True&lt;br /&gt;
&lt;br /&gt;
mailMessage.Subject = txtSubject.Text.Trim()&lt;br /&gt;
mailMessage.Body = FCKeditor1.Value &amp;amp; FooterMessage&lt;br /&gt;
&lt;br /&gt;
Dim smtpClient As System.Net.Mail.SmtpClient = New 
System.Net.Mail.SmtpClient(127.0.0.1)&lt;br /&gt;
Dim mailAuthentication As System.Net.NetworkCredential = New 
System.Net.NetworkCredential(&amp;quot;mail@webplannernewsletter.com&amp;quot;, &amp;quot;subscribe&amp;quot;, 
&amp;quot;webplannernewsletter.com&amp;quot;)&lt;br /&gt;
smtpClient.Credentials = mailAuthentication&lt;br /&gt;
&lt;br /&gt;
Try&lt;br /&gt;
smtpClient.Send(mailMessage)&lt;br /&gt;
lblTestMessage.Text = &amp;quot;Test email send&amp;quot;&lt;br /&gt;
lblTestMessage.ForeColor = Drawing.Color.Green&lt;br /&gt;
Catch smtpExc As System.Net.Mail.SmtpException&lt;br /&gt;
&amp;#39;Log error information on which email failed.&lt;br /&gt;
lblTestMessage.Text = &amp;quot;Some error on SMTP!&amp;quot;&lt;br /&gt;
lblTestMessage.ForeColor = Drawing.Color.Red&lt;br /&gt;
Catch ex As Exception&lt;br /&gt;
&amp;#39;Log general errors&lt;br /&gt;
lblTestMessage.Text = &amp;quot;Some error!&amp;quot;&lt;br /&gt;
lblTestMessage.ForeColor = Drawing.Color.Red&lt;br /&gt;
End Try&lt;/p&gt;


</description></item><item><title>Email privacy on contact form</title><link>http://forums.asp.net/thread/2557934.aspx</link><pubDate>Thu, 14 Aug 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2557934</guid><dc:creator>nickjohnston</dc:creator><description>&lt;p&gt;&amp;nbsp;Hello All,&lt;/p&gt;&lt;p&gt;&amp;nbsp; I&amp;#39;ve recently recieving a noticable quantity of spam email, from the same source, with the same content. They&amp;#39;re all addressed to various existing addresses, on more than one website, that I&amp;#39;d used on my website in several ASP.NET contact forms - it struck me as a bit odd that the same spam was sent to all of them, as the email addresses cannot be found within the client side code.&lt;/p&gt;&lt;p&gt;&amp;nbsp;FYI, this contact form used a wizard control with two pages, and never displays the email address that the form sends to.  &lt;/p&gt;&lt;p&gt;&amp;nbsp;I can only imagine that the server itself had been compromised, but have seen no sign of this - it is up-to-date, appropriately firewalled and running anti-malware software, as is my local machine.&lt;/p&gt;&lt;p&gt;I don&amp;#39;t see how else these email addresses could have been accessed, particularly all by the same spam sender. Is there anything I&amp;#39;m missing?&lt;/p&gt;</description></item><item><title>Re: eMail2Image Asp.Net 2.0 Control</title><link>http://forums.asp.net/thread/2206809.aspx</link><pubDate>Sun, 02 Mar 2008 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2206809</guid><dc:creator>jan223</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;this&amp;nbsp;link is broken.&lt;/p&gt;
&lt;p&gt;I have developed a website where you can convert a email-address to an image:&lt;/p&gt;
&lt;p&gt;The url is: &lt;a class="" href="http://email2image.com/"&gt;email2image.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Jan&lt;/p&gt;</description></item><item><title>Vb.net with SharePoint Server 2007.</title><link>http://forums.asp.net/thread/2100638.aspx</link><pubDate>Wed, 09 Jan 2008 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2100638</guid><dc:creator>aditya_raj</dc:creator><description>&lt;p&gt;Hello &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;can anybody please tell me what is sharepoint and what can we do with .net in configaring sharepoint.&lt;/p&gt;
&lt;p&gt;Is sharepoint something like SQL server.I am a .net programmer.I don&amp;#39;t know sharepoint.But now i got a project which involved sharepoint.Please help me.&lt;/p&gt;
&lt;p&gt;Very urgent.What is the editor i need to use while developing something for sharepoint with .net.Can i use VS2005.If so,is the application a project or website.&lt;/p&gt;</description></item><item><title>Preventing spam bots from filling out web forms</title><link>http://forums.asp.net/thread/1867074.aspx</link><pubDate>Mon, 20 Aug 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1867074</guid><dc:creator>DigitalMan</dc:creator><description>&lt;p&gt;Some of our clients are starting to be effected by this new form of spam.&amp;nbsp; I&amp;#39;ve done some research and seems like there&amp;#39;s no full proof way to really tell between a human and a bot filling out a form. I know there&amp;#39;s CAPTCHA but I think it&amp;#39;s the wrong direction as it causes more work to the user and can be hard to read by the visually impaired. I also read that spammers are creating databases of the question/answer type tactics. If spammers are posting to the form externally it got me thinking that possibly checking the referring url could work. Any thoughts on this? A co-worker also thought of the idea of using image buttons which pass the x/y click coordinates to the page. Now I guess spammers could then just pass random coords as well to get around it. Then I got to thinking of using an image button with a dynamically generated image where the actual button would be rendered in a random area of a larger transparent image. That way the user would click on the button image and the code could check the coords. Another idea I&amp;#39;ve seen is randomly renaming the form field name. Seems this could just escalate to no end. Just wondering what other people have thought about this issue. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>System.Web.HttpRequestValidationException SPAM Attack</title><link>http://forums.asp.net/thread/1748431.aspx</link><pubDate>Mon, 11 Jun 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1748431</guid><dc:creator>keanxsoul</dc:creator><description>&lt;p&gt;I have been receiving SPAM attacks lately on one of my Pages on my site.&amp;nbsp;&lt;/p&gt;&lt;p&gt;It seems to be robot. I have tried activating a ASP.NET Regular expression validator to prevent any HTML content from being postback but no result. I am still receiving the errors.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Now the strange part, I have changed the name of the text area affected by the robot from &lt;b&gt;ctl00$ContentPlaceHolder1$txtComments &lt;/b&gt;to&lt;b&gt; &lt;/b&gt;&lt;b&gt;ctl00$ContentPlaceHolder1$txtCommentBox&lt;/b&gt;, but i am still getting the error messages with the old text area name. &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;I have also set ValidationRequest=&amp;quot;false&amp;quot; on the page in question.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Did anyone get accross this issue before ?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for your time and answers&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the stack trace.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;

















































&lt;p&gt;Timestamp: 6/11/2007 8:11:17 AM&lt;br /&gt;Message: HandlingInstanceID:
72de6648-f9ee-48ff-a910-2ab90d86ab7d&lt;br /&gt;An exception of type
&amp;#39;System.Web.HttpRequestValidationException&amp;#39; occurred and was caught.&lt;br /&gt;-----------------------------------------------------------------------------------------&lt;br /&gt;06/11/2007 01:11:17&lt;br /&gt;Type : &lt;b&gt;System.Web.HttpRequestValidationException,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Message : A potentially dangerous Request.Form value was detected from the
client (ctl00$ContentPlaceHolder1$txtComments=&amp;quot;&amp;lt;A href=http://kiuxm...&amp;quot;).&lt;/b&gt;&lt;br /&gt;Source : System.Web&lt;br /&gt;Help link :&lt;br /&gt;ErrorCode : -2147467259&lt;br /&gt;Data : System.Collections.ListDictionaryInternal&lt;br /&gt;TargetSite : Void ValidateString(System.String,
System.String, System.String)&lt;br /&gt;Stack Trace :&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.HttpRequest.ValidateString(String s, String valueName, String
collectionName)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.HttpRequest.ValidateNameValueCollection(NameValueCollection nvc,
String collectionName)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.HttpRequest.get_Form()&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.HttpRequest.get_HasForm()&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.DeterminePostBackMode()&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,
Boolean includeStagesAfterAsyncPoint)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint,
Boolean includeStagesAfterAsyncPoint)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.ProcessRequest()&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.UI.Page.ProcessRequest(HttpContext context)&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
&lt;b&gt;ASP.newreviewoverview_aspx.ProcessRequest(HttpContext context) in
c:\WINDOWS\microsoft.net\Framework\v2.0.50727\Temporary ASP.NET
Files\root\e5105d11\712565f8\App_Web_iw0bbmky.7.cs:line 0&lt;/b&gt;&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()&lt;br /&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;at
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp;amp;
completedSynchronously)&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Mail not going to Inbox</title><link>http://forums.asp.net/thread/1640410.aspx</link><pubDate>Wed, 28 Mar 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1640410</guid><dc:creator>pirus</dc:creator><description>
										Hi all,&lt;br /&gt;howz life there&lt;br /&gt;well&amp;nbsp; I have&amp;nbsp; developed a mail program ( ASP.NET / C# ) for my site which sends user passwords to their email&lt;br /&gt;addresses. However the problem is that my mails are not received in Inbox whereas they are&lt;br /&gt;diverted
to the Spam folder. I am not able to resolve it niether I think there
is any issue with code as its quite straight forward. &lt;br /&gt;Here is the code have a look if you could suggest any changes or hints that woul be quite helpful&lt;br /&gt;&lt;br /&gt;/************ The CODE ********************************/&lt;br /&gt;&lt;br /&gt;using dataclass;&amp;nbsp; // mydatabase class&lt;br /&gt;using System.Net.Mail;&lt;br /&gt;using System.SMTP;&lt;br /&gt;using System.Text;&lt;br /&gt;&lt;br /&gt;string to;&lt;br /&gt;string sub;&lt;br /&gt;string msg;&lt;br /&gt;Stringbuilder strbld=new Stringbuilder();&lt;br /&gt;&lt;br /&gt;to=sqlreader['email']; // email address is retrived from database&lt;br /&gt;sub="Your Login Information";&lt;br /&gt;strbld.Append("Hello" + sqlreader['username'] + "&amp;lt;br&amp;gt;");&amp;nbsp; // username from database&lt;br /&gt;strbld.Append("Your login name is :" + sqlreader['userlogin'] + "&amp;lt;br&amp;gt;");&amp;nbsp; // login id from database&lt;br /&gt;strbld.Append("Your login password is :" + sqlreader['userpassword'] + "&amp;lt;br&amp;gt;"); // password from database&lt;br /&gt;strbld.Append("Thank You &amp;lt;br&amp;gt;");&lt;br /&gt;strbld.Append("&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;");&lt;br /&gt;strbld.Append("Support Team &amp;lt;br&amp;gt;");&lt;br /&gt;strbld.Append("Mysite.com &amp;lt;br&amp;gt;");&lt;br /&gt;&lt;br /&gt;msg=strbld.ToString();&lt;br /&gt;&lt;br /&gt;MailMessage mlmsg = new MailMessage();&lt;br /&gt;mlmsg.body=msg;&lt;br /&gt;mlmsg.To.Add(new MailAddress(to));&lt;br /&gt;mlmsg.From=new MailAddress("support@mysite.com","Support Team");&lt;br /&gt;mlmsg.Subject=sub;&lt;br /&gt;mlmsg.IsBodyHtml=true;&lt;br /&gt;&lt;br /&gt;SmtpClient mailit = new SmtpClient("Myserver");&lt;br /&gt;mailit.Port=25;&lt;br /&gt;mailit.timeout=200;&lt;br /&gt;&lt;br /&gt;mailit.Send(mlmsg);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/**************end of code **********************************/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks in advance.&lt;br /&gt;&lt;br /&gt;pIrus&lt;br /&gt;I4INDIAN &lt;br /&gt;&lt;font size="2"&gt;Dreams in our eye, Goals are high&lt;br /&gt;Sky is not the limit, when we spread wings and fly&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.marketraise.com/"&gt;www.Marketraise.com&lt;/a&gt;&lt;/font&gt;</description></item><item><title>Re: how to stop comment spam</title><link>http://forums.asp.net/thread/1477576.aspx</link><pubDate>Mon, 27 Nov 2006 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1477576</guid><dc:creator>jeff@zina.com</dc:creator><description>&lt;p&gt;More information on CAPTCHA:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.codeproject.com/aspnet/CaptchaControl.asp"&gt;http://www.codeproject.com/aspnet/CaptchaControl.asp&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.aspnetworld.com/articles/2004030101.aspx"&gt;http://www.aspnetworld.com/articles/2004030101.aspx&lt;/a&gt;&lt;br /&gt;&lt;a href="http://15seconds.com/issue/040202.htm"&gt;http://15seconds.com/issue/040202.htm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Jeff&lt;/p&gt;</description></item></channel></rss>