a helpful tutorial for Creating a Data Access Layer in VS2005 Express
http://www.asp.net/learn/data-access/tutorial-01-cs.aspx
Achievement provides the only real pleasure in life
http://www.asp.net/learn/data-access/tutorial-01-cs.aspx
Posted by SF at 8:04 pm 0 comments
Labels: asp.net 2.0, data access, vs2005 express
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress = System.Net.Dns.GetHostAddresses(strHostName).GetValue(0).ToString();
return clientIPAddress;
Posted by SF at 7:10 pm 0 comments
Labels: 2.0, ASP.NET, C#, retrieve IP
without parameter: LIKE '%abc%'
with parameter: LIKE '%'+@searchString+'%'
Posted by SF at 3:53 pm 0 comments
Labels: keyword search, LIKE, MSSQL, operator, parameter