Tuesday, February 08, 2005
Today I had a requirement of removing the underline in a anchor tag, figured out setting up text:decoration property to none will remove underline from gettting displayed in anchor tag.
style="text-decoration: none";
style="text-decoration: none";
Monday, February 07, 2005
Got an error while trying to populate a datareader by executing a stored procedure using command object, The error said "General Network Error, Check your network Documentation".
Find the solution at the below link, http://weblogs.asp.net/pleloup/archive/2003/07/23/10451.aspx
just set the command.commandTimeout = 0, error stopped popping up, not sure how it fixed the error, but it is working fine :)
Find the solution at the below link, http://weblogs.asp.net/pleloup/archive/2003/07/23/10451.aspx
just set the command.commandTimeout = 0, error stopped popping up, not sure how it fixed the error, but it is working fine :)