Quote Server
Quotes Server is "Quotable Quote" server which can display quotes on your site. Quotes are displayed as image file, you can control quote image properties by passing parameter through query string.
Download quote server
Quotes Server is very easy to install
- copy dll to bin directory of your web application.
- copy settings to your web.config files like following .
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="quote.ashx" type="Jigar.Quotes.QuoteServer,
Jigar.Quotes"/>
</httpHandlers>
</system.web>
</configuration>
- Write link in any web page of your site like
<img src="quote.ashx?width=400" />

other various parameters are as follows.
1) Width parameter:width value: integer
<img src="quote.ashx?width=200" />
2) Forground color parameter: forecolor value:named color
<img src="quote.ashx?width=400&forecolor=green" />

3) Background color parameter:backColor value: named color will be useful if you need different page background.
<img src="quote.ashx?width=400&backcolor=green" />

4) Textfont parameter :textfont value: font information in special format
<img src="quote.ashx?width=400&textFont=verdana,10,bold" />

5) AuthorFont parameter:authorfont value:font information in special format
<img src="quote.ashx?width=400&authorFont=verdana,10,bold" />

6) BorderColor parameter:bordercolor value:named color
<img src="quote.ashx?width=400&bordercolor=red" />

7) FillColor parameter fillcolor value: named color
<img src="quote.ashx?width=400&bordercolor=red&fillcolor=red" />

8) Rounded Edges parameter:rounded value:bool
<img src="quote.ashx?width=400&rounded=false" />

9) FontAntiAlias parameter:fontantialias value:bool
<img src="quote.ashx?width=400&fontantialias=false" />

10) DrawAntiAlias. parameter: drawantialias value: bool
<img src="quote.ashx?width=400&drawantialias=false" />
11) List all categories
<a href="quote.ashx?mode=list" />
12) Display by Subject parameter:subject value : string value available from list.
<img src="quote.ashx?quote.ashx?subject=honesty" />
