Editor reviews are provided by professional editors who evaluate a blog based on the following criteria: Frequency of Updates, Relevance of Content, Site Design, and Writing Style.
If you are adding Page Method on your ASP .Net page and you see this compile error:
the type or namespace name ‘webmethod’ could not be found….
then you are missing one of these things:
A. Make sure you have reference to System.Web.Services on your...
If you need to truncate the SQL database log files to keep them smaller in size. The process I am demonstrating here is for MS SQL 2008.–Get in the database
use Test
GO
–see current file sizes
SELECT name,size from sys.database_files
–see...