Iconfinder is one of the my favorite site, site contains more than 90,679 icons .
![]()
Iconfinder provides great search functionality also we can filter results by icon size.
Iconfinder is one of the my favorite site, site contains more than 90,679 icons .
![]()
Iconfinder provides great search functionality also we can filter results by icon size.
Many of my asp.net web developer friends always ask me questions about aspnet db like , How to create aspnet database in MSSQL? , Is it possible to add aspnet tables and stored procedures into existing MSSQL database? etc.. So I decide to write on that, It might be useful to all.
Here is simple steps to create ASPNET Database

smashingmagazine has released Quartz icon set , It contains 90 icons that we can freely used for private and commercial projects.
![]()
Mark James has created beautiful set of icons called silk, “Silk” is a smooth, free icon set, containing over 700 16-by-16 pixel icons in strokably-soft PNG format. Containing a large variety of icons, you’re sure to find something that tickles your fancy.
![]()
Why:
Compress your css and js files to load pages faster on client side. It reduces size of CSS and JS files so page size will get reduced.
Now majority of browsers support compressed files.
How
Add Global.asax file in your web application and delete all content and place following line in it,
<%@ Application Language="C#" Inherits="Global" %>
Then add Global.cs class file in your APP_CODE folder and put the following functions in it.
public class Global : System.Web.HttpApplication
{
public Global()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.PostReleaseRequestState +=
new EventHandler(Global_PostReleaseRequestState);
}
private void Global_PostReleaseRequestState(
object sender, EventArgs e)
{
string contentType = Response.ContentType;
if (contentType == "text/css" ||
contentType == "application/x-javascript" || contentType == "text/javascript")
{
Response.Cache.VaryByHeaders["Accept-Encoding"] = true;
string acceptEncoding =
Request.Headers["Accept-Encoding"];
if (acceptEncoding != null)
{
if (acceptEncoding.Contains("gzip"))
{
Response.Filter = new GZipStream(
Response.Filter, CompressionMode.Compress);
Response.AppendHeader(
"Content-Encoding", "gzip");
}
else if (acceptEncoding.Contains("deflate"))
{
Response.Filter = new DeflateStream(
Response.Filter, CompressionMode.Compress);
Response.AppendHeader(
"Content-Encoding", "deflate");
}
}
}
}
}
The browser will tell the server whether it supports GZIP or DEFLATE compression (via the Accept-Encoding header). If its an older browser that doesn’t support compression, it will just be sent as uncompressed HTML and your site will still work.
Page Speed is an Firefox Add-on integrated with the Firebug add-on. Web developers can use Page Speed to evaluate the performance of their web pages and to get suggestions on how to improve them. Add-on requires FireBug addon installed.

2.YSlow
YSlow analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages. YSlow is a Firefox add-on integrated with the Firebug web development tool.
jQuery Superbox! is a script which allows you display windows with the lightbox effect.

Features
Accessibility: only the rel attribute is used to launch the script. The href attribute is therefore coherent: it targets the address of a picture, of a page, or an element identifier (anchor).
Extensibility: Superbox doesn’t set any style, everything is easily and entirely CSS stylable.
FreePremiumFonts has the finest, high quality free more than 1000 fonts available for instant download.These free fonts are listed alphabetically and by popular categories.

1. FCKeditor
This lightweight HTML text editor brings to the web much of the power of desktop editors like MS Word.
Features:-
2. Rich Text Editor
Free Rich Text Editor is a JavaScript WYSIWYG editor.
It can be easily integrate with any platform.
Editor lets you to switch between the design, HTML code & preview modes.
3. jWYSIWYG: jQueryPlugin
jWYSIWYG is a jQuery plugin, which transform textarea into an editor.
It uses following simple function syntax,
$(function()
{
$(‘#wysiwyg’).wysiwyg();
});
4. Markitup : jQuery Plugin
MarkItUp is a JavaScript plugin built on the jQuery library. It allows you to turn any textarea into a markup editor.
Features
5. NicEdit
NicEdit is a Lightweight, Cross Platform, Inline Content Editor to allow easy editing of web site content on the fly in the browser.
NicEdit Javascript integrates into any site in seconds to make any element/div editable or convert standard textareas to rich text editing

osTicket is a widely-used open source support ticket system. 
It is simple, lightweight, reliable, open source, and easy to setup and use. The best part is, it’s completely free.