Click here to Skip to main content
15,906,645 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: how to develop blog websites in joomla Pin
Abhishek Sur3-Nov-09 4:51
professionalAbhishek Sur3-Nov-09 4:51 
GeneralRe: how to develop blog websites in joomla Pin
Amit Spadez3-Nov-09 23:08
professionalAmit Spadez3-Nov-09 23:08 
QuestionIs it possible to download a media (video or images) files from server and run it on client machine ! Pin
divyesh14322-Nov-09 17:52
divyesh14322-Nov-09 17:52 
AnswerRe: Is it possible to download a media (video or images) files from server and run it on client machine ! Pin
Christian Graus2-Nov-09 18:27
protectorChristian Graus2-Nov-09 18:27 
AnswerRe: Is it possible to download a media (video or images) files from server and run it on client machine ! Pin
Abhishek Sur2-Nov-09 20:41
professionalAbhishek Sur2-Nov-09 20:41 
GeneralRe: Is it possible to download a media (video or images) files from server and run it on client machine ! Pin
Jayapal Chandran12-Nov-09 7:48
Jayapal Chandran12-Nov-09 7:48 
GeneralRe: Is it possible to download a media (video or images) files from server and run it on client machine ! Pin
Abhishek Sur12-Nov-09 8:42
professionalAbhishek Sur12-Nov-09 8:42 
QuestionComprehensive comparison of document.all and document.getElementById? Pin
DigiFaith2-Nov-09 6:51
DigiFaith2-Nov-09 6:51 
AnswerRe: Comprehensive comparison of document.all and document.getElementById? Pin
Oakman3-Nov-09 12:08
Oakman3-Nov-09 12:08 
QuestionHow to change a title of javascript alert Pin
kKamel2-Nov-09 5:56
kKamel2-Nov-09 5:56 
AnswerRe: How to change a title of javascript alert Pin
Abhishek Sur2-Nov-09 6:13
professionalAbhishek Sur2-Nov-09 6:13 
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 

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.