<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>SharpLife.NET</title>
  <link rel="alternate" type="text/html" href="http://sharplife.net/" />
  <link rel="self" href="http://sharplife.net/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-07-05T07:09:18.1733356-06:00</updated>
  <author>
    <name>Mahdi Taghizadeh</name>
  </author>
  <subtitle>A sharp way to know more // Mahdi Taghizadeh's Daily Web Keystrokes.</subtitle>
  <id>http://sharplife.net/</id>
  <generator uri="http://www.dasblog.net" version="2.0.7180.0">DasBlog</generator>
  <entry>
    <title>Find Your Web site SQL Injection Vulnerabilities Using Scrawlr</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2008/07/05/FindYourWebSiteSQLInjectionVulnerabilitiesUsingScrawlr.aspx" />
    <id>http://sharplife.net/PermaLink,guid,f3d47401-5e43-4fa5-98f3-e86f8c3e313c.aspx</id>
    <published>2008-07-05T07:09:18.1733356-06:00</published>
    <updated>2008-07-05T07:09:18.1733356-06:00</updated>
    <category term="Download" label="Download" scheme="http://sharplife.net/CategoryView,category,Download.aspx" />
    <category term="Security" label="Security" scheme="http://sharplife.net/CategoryView,category,Security.aspx" />
    <category term="Software" label="Software" scheme="http://sharplife.net/CategoryView,category,Software.aspx" />
    <category term="Tools" label="Tools" scheme="http://sharplife.net/CategoryView,category,Tools.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
One of the basic but important security issues in web development that you should
pay attention to is SQL Injection. Recently HP released a free tool called <strong>Scrawlr</strong> to
test such vulnerabilities. 
</p>
        <p>
This tool checks your pages using a simple crawler or Google query and find any SQL
Injection problems. This tool can only check issues on GET parameters.
</p>
        <p>
You can check up to 1500 URL in each web site using this free tool.
</p>
        <p>
          <strong>Download: <a href="https://download.spidynamics.com/Products/scrawlr/" target="_blank">https://download.spidynamics.com/Products/scrawlr/</a></strong>
        </p>
        <img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=f3d47401-5e43-4fa5-98f3-e86f8c3e313c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>How to use ASP.NET Membership in a Console Application</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2008/07/01/HowToUseASPNETMembershipInAConsoleApplication.aspx" />
    <id>http://sharplife.net/PermaLink,guid,6e0d352d-bc23-40fe-af0b-fe4c17115c6c.aspx</id>
    <published>2008-07-01T06:54:35.307-06:00</published>
    <updated>2008-07-01T06:57:44.27556-06:00</updated>
    <category term=".NET General" label=".NET General" scheme="http://sharplife.net/CategoryView,category,.NET%2BGeneral.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://sharplife.net/CategoryView,category,ASP.NET.aspx" />
    <category term="Security" label="Security" scheme="http://sharplife.net/CategoryView,category,Security.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
It’s so easy to use powerful ASP.NET Membership, Role and Profile provider in a Windows
or Console application. Only one key point remains here; you should add an app.config
file to your Console or Windows application and include these nodes in that:
</p>
        <pre class="csharpcode">
          <span class="kwrd">&lt;?</span>
          <span class="html">xml</span>
          <span class="attr">version</span>
          <span class="kwrd">='1.0'</span>
          <span class="attr">encoding</span>
          <span class="kwrd">='utf-8'</span>?<span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">configuration</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">connectionStrings</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="SQLConnString"</span><span class="attr">connectionString</span><span class="kwrd">="SERVER=(local);DATABASE=SampleApp;UID=sa;PWD=123"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;/</span><span class="html">connectionStrings</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">system.web</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">membership</span><span class="attr">defaultProvider</span><span class="kwrd">="SampleAppMembershipProvider"</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">providers</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="SampleAppMembershipProvider"</span><span class="attr">connectionStringName</span><span class="kwrd">="SQLConnString"</span><span class="attr">applicationName</span><span class="kwrd">="SampleAppMembership"</span><span class="attr">enablePasswordReset</span><span class="kwrd">="true"</span><span class="attr">enablePasswordRetrieval</span><span class="kwrd">="false"</span><span class="attr">passwordFormat</span><span class="kwrd">="Hashed"</span><span class="attr">maxInvalidPasswordAttempts</span><span class="kwrd">="100"</span><span class="attr">minRequiredPasswordLength</span><span class="kwrd">="5"</span><span class="attr">minRequiredNonalphanumericCharacters</span><span class="kwrd">="0"</span><span class="attr">requiresQuestionAndAnswer</span><span class="kwrd">="false"</span><span class="attr">requiresUniqueEmail</span><span class="kwrd">="true"</span><span class="attr">passwordAttemptWindow</span><span class="kwrd">="5"</span><span class="attr">passwordStrengthRegularExpression</span><span class="kwrd">=""</span><span class="attr">type</span><span class="kwrd">="System.Web.Security.SqlMembershipProvider"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;/</span><span class="html">providers</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;/</span><span class="html">membership</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">profile</span><span class="attr">defaultProvider</span><span class="kwrd">="SampleAppProfileProvider"</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">providers</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="SampleAppProfileProvider"</span><span class="attr">type</span><span class="kwrd">="System.Web.Profile.SqlProfileProvider"</span><span class="attr">connectionStringName</span><span class="kwrd">="SQLConnString"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;/</span><span class="html">providers</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">properties</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="FirstName"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="LastName"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Email"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Website"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Address"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Note"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Phone"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Fax"</span><span class="attr">type</span><span class="kwrd">="System.String"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="Feature"</span><span class="attr">type</span><span class="kwrd">="System.Int32"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;/</span><span class="html">properties</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;/</span><span class="html">profile</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">roleManager</span><span class="attr">enabled</span><span class="kwrd">="true"</span><span class="attr">cacheRolesInCookie</span><span class="kwrd">="true"</span><span class="attr">defaultProvider</span><span class="kwrd">="SampleAppSqlRoleProvider"</span><br /><span class="attr">cookieName</span><span class="kwrd">=".ASPXSampleAppROLES"</span><span class="attr">cookiePath</span><span class="kwrd">="/"</span><span class="attr">cookieTimeout</span><span class="kwrd">="30"</span><span class="attr">cookieRequireSSL</span><span class="kwrd">="false"</span><br /><span class="attr">cookieSlidingExpiration</span><span class="kwrd">="true"</span><span class="attr">createPersistentCookie</span><span class="kwrd">="false"</span><span class="attr">cookieProtection</span><span class="kwrd">="All"</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">providers</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;</span><span class="html">clear</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;</span><span class="html">add</span><span class="attr">name</span><span class="kwrd">="SampleAppSqlRoleProvider"</span><span class="attr">type</span><span class="kwrd">="System.Web.Security.SqlRoleProvider, 
<br />
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"</span><br /><span class="attr">connectionStringName</span><span class="kwrd">="SQLConnString"</span><span class="attr">applicationName</span><span class="kwrd">="SampleAppRoles"</span><span class="kwrd">/&gt;</span><span class="kwrd">&lt;/</span><span class="html">providers</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;/</span><span class="html">roleManager</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;/</span><span class="html">system.web</span><span class="kwrd">&gt;</span><span class="kwrd">&lt;/</span><span class="html">configuration</span><span class="kwrd">&gt;</span></pre>
        <pre class="csharpcode">
          <span class="kwrd">
          </span>
        </pre>
        <style type="text/css">



.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
        <img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=6e0d352d-bc23-40fe-af0b-fe4c17115c6c" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Follow my tiny posts on twitter too!</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2008/06/25/FollowMyTinyPostsOnTwitterToo.aspx" />
    <id>http://sharplife.net/PermaLink,guid,3817a39c-1f92-43e6-8bb2-db673e2883e3.aspx</id>
    <published>2008-06-25T06:51:54.0424688-06:00</published>
    <updated>2008-06-25T06:51:54.0424688-06:00</updated>
    <category term="General" label="General" scheme="http://sharplife.net/CategoryView,category,General.aspx" />
    <category term="Personal" label="Personal" scheme="http://sharplife.net/CategoryView,category,Personal.aspx" />
    <category term="SharpLife.NET" label="SharpLife.NET" scheme="http://sharplife.net/CategoryView,category,SharpLife.NET.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Hi!<br /><br />
It's a long time since I've decided not to post simple day-to-day not useful posts
on Sharplife.NET; meanwhile this damn busy life doesn't allow me to post large technical
posts about .NET, so if you are interested to follow some links and tiny posts you
can follow me on <a href="http://twitter.com/mahdi">Twitter</a>, <a href="http://mahdi.jaiku.com">Jaiku</a>, <a href="http://www.plurk.com/user/mahdi">Plurk</a> or <a href="http://pownce.com/mahdit/">Pownce</a>.<br /><br />
I'll try to write some technical stuff periodically.<br /><br />
Don't forget to take a look at <a href="http://www.tabassom.com">tabassom.com</a> ;-)<br /><p></p><img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=3817a39c-1f92-43e6-8bb2-db673e2883e3" /></div>
    </content>
  </entry>
  <entry>
    <title>Joint Song by Arian Music Band and Chris De Burgh</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/11/30/JointSongByArianMusicBandAndChrisDeBurgh.aspx" />
    <id>http://sharplife.net/PermaLink,guid,07b35887-12d5-4df8-8879-014f221c92a7.aspx</id>
    <published>2007-11-30T05:44:31.96875-07:00</published>
    <updated>2007-11-30T05:44:31.96875-07:00</updated>
    <category term="Iran" label="Iran" scheme="http://sharplife.net/CategoryView,category,Iran.aspx" />
    <category term="Music" label="Music" scheme="http://sharplife.net/CategoryView,category,Music.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Iranian <a href="http://www.arianmusic.com">Arian
Music Band</a> and famous Irish singer, <a href="http://www.cdeb.com">Chris De Burgh</a>,
are working on a joint song. According to Mohsen Rajabpour, managing director of Arian
Band "A Medlody for Peace" is the name of this song and with the theme of love and
respect to human beliefs, and soon will be presented inside and outside the<font style="font-size: 9pt;"><font face="Tahoma" size="2"><span dir="ltr"> country.<br /><br />
This new song will be shipped with 4th Arian album in the next few months.<br /></span></font></font><p></p><img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=07b35887-12d5-4df8-8879-014f221c92a7" /></div>
    </content>
  </entry>
  <entry>
    <title>Download .netTiers Documentation</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/11/05/DownloadNetTiersDocumentation.aspx" />
    <id>http://sharplife.net/PermaLink,guid,7d2db63c-4824-4312-9187-0060770d40e6.aspx</id>
    <published>2007-11-05T03:18:19.5358352-07:00</published>
    <updated>2007-11-05T03:18:19.5358352-07:00</updated>
    <category term=".NET General" label=".NET General" scheme="http://sharplife.net/CategoryView,category,.NET%2BGeneral.aspx" />
    <category term="C#" label="C#" scheme="http://sharplife.net/CategoryView,category,C%23.aspx" />
    <category term="Download" label="Download" scheme="http://sharplife.net/CategoryView,category,Download.aspx" />
    <category term="Tools" label="Tools" scheme="http://sharplife.net/CategoryView,category,Tools.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">A few days ago, I found some free time to
study some articles and documentation about <a href="http://www.nettiers.com/">.netTiers</a>.
I tested it on some of my previous projects and result was great. Professional software
architecture in generated code, smart code generation based on database tables and
columns, ease of use, etc. are amazing features of this open source template for <a href="http://www.codesmithtools.com/">CodeSmith</a>.<br /><br />
.netTiers official website has a <a href="http://docs.nettiers.com/">documenation</a> you
can read online but how I searched, I couldn't find any offline version of this documentation
to download. So I saved all documentation sections as HTML files and also created
PDF version of each page. You can download this documentation in a compress file <a temp_href="http://sharplife.net/Files/netTiers 2.2.0 Documentation - 2 Nov 2007.rar" href="http://sharplife.net/Files/netTiers%202.2.0%20Documentation%20-%202%20Nov%202007.rar">here</a> (3.7
MB).<br /><p></p><img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=7d2db63c-4824-4312-9187-0060770d40e6" /></div>
    </content>
  </entry>
  <entry>
    <title>Jaiku Invitations</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/10/31/JaikuInvitations.aspx" />
    <id>http://sharplife.net/PermaLink,guid,a0d27f55-b33f-40d9-9c73-fd86f2871b68.aspx</id>
    <published>2007-10-31T07:48:02.926-06:00</published>
    <updated>2007-11-05T03:20:42.9220144-07:00</updated>
    <category term="General" label="General" scheme="http://sharplife.net/CategoryView,category,General.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">I have 9 Jaiku invitations left. Everyone
who wants to receive one, please leave his/her name and email address in comment of
THIS post.<br /><br />
Forget to say I'm at <a href="http://mahdi.jaiku.com">mahdi.jaiku.com</a>!<br /><br /><b><br /><font color="#ff0000">UPDATE:</font></b>I sent all 9 invitations and I don't have
anymore left.<br /><p></p><img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=a0d27f55-b33f-40d9-9c73-fd86f2871b68" /></div>
    </content>
  </entry>
  <entry>
    <title>reCAPTCHA: Free CAPTCHA Solution For Your Website</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/10/15/reCAPTCHAFreeCAPTCHASolutionForYourWebsite.aspx" />
    <id>http://sharplife.net/PermaLink,guid,178a128c-dfe4-4a65-bd62-c2b32cde2bf5.aspx</id>
    <published>2007-10-15T06:07:04.481-06:00</published>
    <updated>2007-10-15T06:20:26.3342496-06:00</updated>
    <category term=".NET General" label=".NET General" scheme="http://sharplife.net/CategoryView,category,.NET%2BGeneral.aspx" />
    <category term="AJAX" label="AJAX" scheme="http://sharplife.net/CategoryView,category,AJAX.aspx" />
    <category term="Security" label="Security" scheme="http://sharplife.net/CategoryView,category,Security.aspx" />
    <category term="Web" label="Web" scheme="http://sharplife.net/CategoryView,category,Web.aspx" />
    <category term="Web 2.0" label="Web 2.0" scheme="http://sharplife.net/CategoryView,category,Web%2B2.0.aspx" />
    <category term="Web Services" label="Web Services" scheme="http://sharplife.net/CategoryView,category,Web%2BServices.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Recently (and specially after Web 2.0 revolution) many websites started to use more
complicated CAPTCHA solutions on their websites in order to prevent spam and bot attacks.
There are many free solutions and tools for users and developers to implement CAPTCHA
technology in their applications. There are also many ASP.NET controls and components
for this approach but many of them are so simple to hijack or don't offer features
that these days we see on professional websites (some features like reload function,
voice, etc.). 
<br /></p>
        <p>
A few days ago I found a link to <a href="http://recaptcha.net/" target="_blank">reCAPTCHA</a> on
Yahoo!. reCAPTCHA is a free (but professional) tool for basic users and also developers.
To use this service you should first signup, receive an API Key for your website (you
can receive as many as you need) and use one of easy-to-install plugnins provided.
And good news for ASP.NET developers is that you can <a href="http://recaptcha.googlecode.com/files/recaptcha-dotnet.zip">download</a><script type="text/javascript" src="http://api.recaptcha.net/js/recaptcha_ajax.js"></script>
and use a server side control and enjoy reCAPTCHA with two lines of code! The API
Key guarantees your website and prevents attackers collect answers from visitors and
use them. There are three different themes to choose. 
<br /></p>
        <p>
If you want to use reCAPTCHA on a Web 2.0 website you can use AJAX API just by adding
this line of code to you html or webform file: I strongly suggest you download and
test this tool in your web applications.
</p>
        <p>
          <br />
        </p>
        <p>
          <strong>Quick Links:</strong>
          <a href="http://recaptcha.net/" target="_blank">reCAPTCHA.net</a> | <a href="http://recaptcha.net/learnmore.html" target="_blank">Live
Demo</a> | <a href="http://recaptcha.net/whyrecaptcha.html" target="_blank">Why reCAPTCHA</a> | <a href="https://admin.recaptcha.net/recaptcha/createsite/" target="_blank">Signup</a> | <a href="http://recaptcha.googlecode.com/files/recaptcha-dotnet.zip">reCAPTCHA.NET
Control</a> | <a href="http://mailhide.recaptcha.net/" target="_blank">Email Protection
With reCAPTCHA</a></p>
        <img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=178a128c-dfe4-4a65-bd62-c2b32cde2bf5" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Some ASP.NET Articles</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/10/03/SomeASPNETArticles.aspx" />
    <id>http://sharplife.net/PermaLink,guid,6a7f644e-271e-4742-8897-d3745c579303.aspx</id>
    <published>2007-10-03T04:37:27.8002432-06:00</published>
    <updated>2007-10-03T04:37:27.8002432-06:00</updated>
    <category term=".NET General" label=".NET General" scheme="http://sharplife.net/CategoryView,category,.NET%2BGeneral.aspx" />
    <category term="AJAX" label="AJAX" scheme="http://sharplife.net/CategoryView,category,AJAX.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://sharplife.net/CategoryView,category,ASP.NET.aspx" />
    <category term="Security" label="Security" scheme="http://sharplife.net/CategoryView,category,Security.aspx" />
    <category term="Web" label="Web" scheme="http://sharplife.net/CategoryView,category,Web.aspx" />
    <category term="Web 2.0" label="Web 2.0" scheme="http://sharplife.net/CategoryView,category,Web%2B2.0.aspx" />
    <category term="Web Development" label="Web Development" scheme="http://sharplife.net/CategoryView,category,Web%2BDevelopment.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://weblogs.asp.net/omarzabir">Omar
Al Zabir</a> has recently <a href="http://weblogs.asp.net/omarzabir/archive/2007/10/02/10-cool-web-development-related-articles-in-2007.aspx">listed</a> 10
cool articles about ASP.NET, AJAX, ... which he has published this year. From my personal
view these articles are interesting:<br /><br /><ul><li><a href="http://msmvps.com/blogs/omar/archive/2007/03/25/cleanup-inactive-anonymous-users-from-asp-net-membership-tables.aspx" mce_href="http://msmvps.com/blogs/omar/archive/2007/03/25/cleanup-inactive-anonymous-users-from-asp-net-membership-tables.aspx">Cleanup
inactive anonymous users from ASP.NET Membership Tables</a></li><li><a href="http://msmvps.com/blogs/omar/archive/2007/03/24/prevent-denial-of-service-dos-attacks-in-your-web-application.aspx" mce_href="http://msmvps.com/blogs/omar/archive/2007/03/24/prevent-denial-of-service-dos-attacks-in-your-web-application.aspx">Prevent
Denial of Service (DOS) attacks in your web application</a></li><li><a href="http://www.codeproject.com/install/13disasters.asp" mce_href="http://www.codeproject.com/install/13disasters.asp">13
disasters for production website and their solutions</a></li></ul><p></p><img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=6a7f644e-271e-4742-8897-d3745c579303" /></div>
    </content>
  </entry>
  <entry>
    <title>BlogEngine.NET 1.2 Released</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/10/01/BlogEngineNET12Released.aspx" />
    <id>http://sharplife.net/PermaLink,guid,65fabca0-f961-44a8-a2c7-29466920ada3.aspx</id>
    <published>2007-10-01T04:24:27.287-06:00</published>
    <updated>2007-10-01T04:26:33.3791072-06:00</updated>
    <category term=".NET General" label=".NET General" scheme="http://sharplife.net/CategoryView,category,.NET%2BGeneral.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://sharplife.net/CategoryView,category,ASP.NET.aspx" />
    <category term="Download" label="Download" scheme="http://sharplife.net/CategoryView,category,Download.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.dotnetblogengine.net">BlogEngine.NET
1.2</a> released. As you may know it's a free blog tool written in C# and ASP.NET
2.0 and they added many features to this release which you can see <a href="http://www.dotnetblogengine.net/post/Release-of-BlogEngineNET-12.aspx">here</a>.<br /><br />
In this release BlogEngine supports 26 language packages including Persian language
which I had translated its resources for them.<br /><br />
Although, I don't use BlogEngine at present (and I'm using dasBlog), I'm thinking
about migration to BlogEngine because of more features. In this version BlogEngline
also supports <a href="http://blogml.org/">BlogML</a> for import/export (Thanks <a href="http://nayyeri.net">Keyvan</a>!).<br /><br />
More on BlogEngline.NET: <a href="http://www.codeplex.com/blogengine/Release/ProjectReleases.aspx">Download
Latest Release</a> | <a href="http://www.dotnetblogengine.net/wiki/">Documents</a> | <a href="http://www.discountasp.net/go/go.aspx?i=3884">Hosters
that offer BlogEngine.NET</a> | <a href="http://www.dotnetblogengine.net/page/features.aspx">Complete
Features List</a> | <a href="http://www.dotnetblogengine.net/page/videos.aspx">Some
Videos</a>.<br /><p></p><img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=65fabca0-f961-44a8-a2c7-29466920ada3" /></div>
    </content>
  </entry>
  <entry>
    <title>metacrawler.com: Search The Search Engines!</title>
    <link rel="alternate" type="text/html" href="http://sharplife.net/2007/09/27/metacrawlercomSearchTheSearchEngines.aspx" />
    <id>http://sharplife.net/PermaLink,guid,dc485144-79d5-462c-8f4b-d997c3b7a174.aspx</id>
    <published>2007-09-27T02:05:25.67-06:00</published>
    <updated>2007-09-27T02:08:36.8050944-06:00</updated>
    <category term="Web" label="Web" scheme="http://sharplife.net/CategoryView,category,Web.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Sometimes it happend that you want to search for something on the web and don't find
your desired results in your favorite search engine, you may decide to try another
search engine to find the answer. Here's a better and easier way for such times!
</p>
        <p>
          <a href="http://www.metacrawler.com/">metacrawler.com</a> is a website which enjoys
metasearch technology to gather best results from various search engines including
Google, Yahoo! Search, MSN Search, Ask Jeeves, About, MIVA, LookSmart and more.
</p>
        <p>
You can see all results from all search engines together or select a search engine
and see its results only.
</p>
        <img width="0" height="0" src="http://sharplife.net/aggbug.ashx?id=dc485144-79d5-462c-8f4b-d997c3b7a174" />
      </div>
    </content>
  </entry>
</feed>