Click here to Skip to main content
15,887,683 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: How to change a title of javascript alert Pin
kKamel2-Nov-09 6:19
kKamel2-Nov-09 6:19 
GeneralRe: How to change a title of javascript alert Pin
Abhishek Sur2-Nov-09 6:20
professionalAbhishek Sur2-Nov-09 6:20 
GeneralRe: How to change a title of javascript alert Pin
kKamel2-Nov-09 6:22
kKamel2-Nov-09 6:22 
GeneralRe: How to change a title of javascript alert Pin
Abhishek Sur2-Nov-09 7:04
professionalAbhishek Sur2-Nov-09 7:04 
QuestionHow to add my database in server Pin
Ariful Islam Sabuz31-Oct-09 21:55
Ariful Islam Sabuz31-Oct-09 21:55 
AnswerRe: How to add my database in server Pin
Abhishek Sur31-Oct-09 22:03
professionalAbhishek Sur31-Oct-09 22:03 
GeneralRe: How to add my database in server Pin
Ariful Islam Sabuz31-Oct-09 22:22
Ariful Islam Sabuz31-Oct-09 22:22 
GeneralRe: How to add my database in server Pin
Abhishek Sur1-Nov-09 1:34
professionalAbhishek Sur1-Nov-09 1:34 
To attach a database use this script.

USE [master]
GO
CREATE DATABASE [KoorasDatabase] ON
( FILENAME = N’C:\Data\KoorasDatabase_Data.mdf’ ),
( FILENAME = N’C:\Data\KoorasDatabase_Log.ldf’ )
FOR ATTACH
GO
IF EXISTS ( SELECT name
FROM master.sys.databases sd
WHERE name = N’KoorasDatabase’
AND SUSER_SNAME(sd.owner_sid) = SUSER_SNAME() )
EXEC [KoorasDatabase].dbo.sp_changedbowner @loginame=N’sa’,
@map=false
GO

Just replace the Filepath with appropriate one. Rose | [Rose]

Abhishek Sur
Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->

Microsoft Bing MAP using Javascript
CLR objects in SQL Server 2005
Uncommon C# Keywords
/xml>

QuestionJavascript Library for Graph Pin
Member 336966231-Oct-09 17:53
Member 336966231-Oct-09 17:53 
AnswerRe: Javascript Library for Graph Pin
Not Active31-Oct-09 18:17
mentorNot Active31-Oct-09 18:17 
GeneralRe: Javascript Library for Graph Pin
Member 33696621-Nov-09 4:49
Member 33696621-Nov-09 4:49 
GeneralRe: Javascript Library for Graph Pin
Not Active1-Nov-09 6:30
mentorNot Active1-Nov-09 6:30 
QuestionCan I use ASP script to connect & open local MS Access database? [modified] Pin
Curious 200931-Oct-09 11:57
Curious 200931-Oct-09 11:57 
Questionasp(scripting) Pin
rajiv_kadam30-Oct-09 22:39
rajiv_kadam30-Oct-09 22:39 
AnswerRe: asp(scripting) Pin
Abhishek Sur31-Oct-09 11:29
professionalAbhishek Sur31-Oct-09 11:29 
QuestionThe Link is not being updated Pin
BobInNJ30-Oct-09 10:37
BobInNJ30-Oct-09 10:37 
AnswerRe: The Link is not being updated Pin
Christian Graus30-Oct-09 14:09
protectorChristian Graus30-Oct-09 14:09 
QuestionWeb Page Protection Pin
nlarson1130-Oct-09 4:55
nlarson1130-Oct-09 4:55 
AnswerRe: Web Page Protection Pin
Abhishek Sur30-Oct-09 9:40
professionalAbhishek Sur30-Oct-09 9:40 
QuestionHow to Commnuicate with .net to javaServlat Pin
boopathiduraisamy30-Oct-09 1:37
boopathiduraisamy30-Oct-09 1:37 
AnswerRe: How to Commnuicate with .net to javaServlat Pin
Nitin S30-Oct-09 3:56
professionalNitin S30-Oct-09 3:56 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
boopathiduraisamy30-Oct-09 3:59
boopathiduraisamy30-Oct-09 3:59 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
boopathiduraisamy30-Oct-09 4:00
boopathiduraisamy30-Oct-09 4:00 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
Nitin S30-Oct-09 6:57
professionalNitin S30-Oct-09 6:57 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
Abhishek Sur30-Oct-09 9:41
professionalAbhishek Sur30-Oct-09 9:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.