Thursday, July 21, 2011

how to turn off resize text area

<textarea id="txtMessageBox" runat="server" cols="20" rows="2"  style="width:400px;height:130px;resize: none;"></textarea>

Add High Lighted  line in style of textarea

Thursday, July 7, 2011

Page Redirection Using Meta Tag

Add this line at the top of meta tag .
<html>
<head>
<meta http-equiv="refresh" content="0; url=/index.aspx">
</head>

SQL Optimization

  SQL Optimization  1. Add where on your query  2. If you remove some data after the data return then remove the remove condition in the sel...