20 October 2008

I m using SQL Server 2005 and trying to get table name "myTable" from all databases from SQL Server

begin try
Exec sp_MSforeachdb 'Select * From ?..sysobjects where name=''myTable'''
end try
begin catch
print 'error'
end catch

06 October 2008

If you are using FCK editor and also you are using "Theme" from ASP.net you may get error for head tag in master page for Runat="Server" when you are uploading image from FCK Editor.

It have a simple solution,
Create a web.config file in "fckeditor" folder

and add "Page" element into "system.web" tag. and write down theme="".

configuration>
system.web>
pages theme="">
/system.web>
/configuration>