Friday 25 January 2013

To Find Created Date and Modified Date in StoredProcedure in SQL


SELECT create_date,modify_date,name FROM sys.objects where type = 'p'

ORDER BY modify_date DESC

To Overcome Length Problem of Textarea in Asp.net

<asp:TextBox runat="server" style="overflow:hidden;" ID="txtAreaCommets" Font-Size="11px" TextMode="MultiLine" Text='<%# Bind("ProcessedRemarks") %>' Rows="2" Width="99.5%" oncopy="return false" oncut="return false" onpaste="return false" onkeypress="if (this.value.length > 250) { return false; }"></asp:TextBox>