1.使用系統管理者執行CMD
2.執行 reg delete HKLM\SOFTWARE\Microsoft\SQMClient\Windows\DisabledSessions /va /f
3.重新安裝 Silverlight3 Tools For VS 2008 SP1
2009年11月15日 星期日
2009年11月9日 星期一
SQL Server 2000資料庫中的使用者帳號對應到登入帳號
declare @dbname nvarchar(200), @cmd2 nvarchar(2000)
declare c_db cursor for
select name from sysdatabases where dbid > 4
open c_db fetch next from c_db into @dbname
while @@fetch_status=0
begin
print @dbname
set @cmd2='use '+@dbname + ' ' +
'
declare @name nvarchar(200), @cmd nvarchar(200)
declare c_user cursor for
select name from sysusers where altuid is null and createdate > ''2001/1/1''
--select name from sysusers where altuid=0 and createdate > ''2001/1/1''
open c_user
fetch next from c_user into @name
while @@fetch_status=0
begin
print @name
exec sp_change_users_login ''Update_One'', @name , @name
--exec sp_change_users_login ''auto_fix'', @name
fetch next from c_user into @name
end
close c_user
deallocate c_user
'
exec (@cmd2)
--print (@cmd2)
fetch next from c_db into @dbname
end
close c_db
deallocate c_db
declare c_db cursor for
select name from sysdatabases where dbid > 4
open c_db fetch next from c_db into @dbname
while @@fetch_status=0
begin
print @dbname
set @cmd2='use '+@dbname + ' ' +
'
declare @name nvarchar(200), @cmd nvarchar(200)
declare c_user cursor for
select name from sysusers where altuid is null and createdate > ''2001/1/1''
--select name from sysusers where altuid=0 and createdate > ''2001/1/1''
open c_user
fetch next from c_user into @name
while @@fetch_status=0
begin
print @name
exec sp_change_users_login ''Update_One'', @name , @name
--exec sp_change_users_login ''auto_fix'', @name
fetch next from c_user into @name
end
close c_user
deallocate c_user
'
exec (@cmd2)
--print (@cmd2)
fetch next from c_db into @dbname
end
close c_db
deallocate c_db
2009年11月5日 星期四
IE8 相容模式 (相容IE7)
方法一, 如果不是所有頁面都有問題,可以在有問題的那一頁加入Meta 宣告,語法:
此語法是加在 之間。但如果是整個站台有問題,那建議調整 Web Server的設定。
方法二,如果Web Server為 Apache 環境:
1.確認 apache 有載入 mod_headers 模組(細節請看:Apache官網 )
2.在 httpd.conf 裡加入
Header set X-UA-Compatible "IE=EmulateIE7"
3.重啟 Apache
方法三,如果Web Server為 IIS 環境:
1.進入到 IIS 管理中心,打開 HTTP標題 頁籤,按下「新增」
2.在自訂標頭名稱輸入「X-UA-Compatible」、自訂標頭值輸入「IE=EmulateIE7」
來源網址:http://blog.db.idv.tw/2009/03/ie8.html
此語法是加在 之間。但如果是整個站台有問題,那建議調整 Web Server的設定。
方法二,如果Web Server為 Apache 環境:
1.確認 apache 有載入 mod_headers 模組(細節請看:Apache官網 )
2.在 httpd.conf 裡加入
Header set X-UA-Compatible "IE=EmulateIE7"
3.重啟 Apache
方法三,如果Web Server為 IIS 環境:
1.進入到 IIS 管理中心,打開 HTTP標題 頁籤,按下「新增」
2.在自訂標頭名稱輸入「X-UA-Compatible」、自訂標頭值輸入「IE=EmulateIE7」
來源網址:http://blog.db.idv.tw/2009/03/ie8.html
訂閱:
文章 (Atom)