Click here to Skip to main content
16,009,112 members
Home / Discussions / Web Development
   

Web Development

 
QuestionPop in php..Displaying div after successful execution of php Pin
Sheeshkamal1-Sep-12 9:22
Sheeshkamal1-Sep-12 9:22 
AnswerRe: Pop in php..Displaying div after successful execution of php Pin
Joan M2-Sep-12 21:04
professionalJoan M2-Sep-12 21:04 
AnswerRe: Pop in php..Displaying div after successful execution of php Pin
WebMaster6-Sep-12 20:35
WebMaster6-Sep-12 20:35 
Questionconnect to facebook Pin
Member 82146351-Sep-12 4:26
Member 82146351-Sep-12 4:26 
AnswerRe: connect to facebook Pin
Richard Andrew x641-Sep-12 8:42
professionalRichard Andrew x641-Sep-12 8:42 
AnswerCrossPost Pin
Sandeep Mewara1-Sep-12 10:42
mveSandeep Mewara1-Sep-12 10:42 
QuestionIndexed Db vs WebSql Data (SQLITE) Pin
gaurish thakkar29-Aug-12 2:41
gaurish thakkar29-Aug-12 2:41 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
Eddy Vluggen29-Aug-12 3:03
professionalEddy Vluggen29-Aug-12 3:03 
GeneralRe: Indexed Db vs WebSql Data (SQLITE) Pin
gaurish thakkar29-Aug-12 17:59
gaurish thakkar29-Aug-12 17:59 
GeneralRe: Indexed Db vs WebSql Data (SQLITE) Pin
Eddy Vluggen29-Aug-12 22:29
professionalEddy Vluggen29-Aug-12 22:29 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
jkirkerx29-Aug-12 11:35
professionaljkirkerx29-Aug-12 11:35 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
Bernhard Hiller29-Aug-12 21:32
Bernhard Hiller29-Aug-12 21:32 
AnswerRe: Indexed Db vs WebSql Data (SQLITE) Pin
Zaf Khan19-Nov-12 17:49
Zaf Khan19-Nov-12 17:49 
QuestionExample of HTML5 File Api for Read/Write Pin
gaurish thakkar20-Aug-12 17:43
gaurish thakkar20-Aug-12 17:43 
AnswerRe: Example of HTML5 File Api for Read/Write Pin
fjdiewornncalwe21-Aug-12 3:20
professionalfjdiewornncalwe21-Aug-12 3:20 
QuestionLooking for a web developer in or near Linksfield, Johannesburg, SA Pin
Imagin8 SA17-Aug-12 22:25
Imagin8 SA17-Aug-12 22:25 
AnswerRe: Looking for a web developer in or near Linksfield, Johannesburg, SA Pin
Richard MacCutchan17-Aug-12 23:25
mveRichard MacCutchan17-Aug-12 23:25 
QuestionASP.Net AjaxToolkit MaskedEditExtender defaults to AM only when system time is between 12-1 PM Pin
pjshah7017-Aug-12 3:30
pjshah7017-Aug-12 3:30 
QuestionWebGL question Pin
Madhan Mohan Reddy P16-Aug-12 17:45
professionalMadhan Mohan Reddy P16-Aug-12 17:45 
AnswerRe: WebGL question Pin
Eddy Vluggen17-Aug-12 3:24
professionalEddy Vluggen17-Aug-12 3:24 
QuestionFan Page in Facebook with Classic ASP Pin
c.roberto.u15-Aug-12 20:48
c.roberto.u15-Aug-12 20:48 
AnswerRe: Fan Page in Facebook with Classic ASP Pin
Eddy Vluggen17-Aug-12 3:23
professionalEddy Vluggen17-Aug-12 3:23 
QuestionSend response from web site. Pin
Naveen_1439-Aug-12 20:20
Naveen_1439-Aug-12 20:20 
SuggestionRe: Send response from web site. Pin
CodeHawkz9-Aug-12 20:48
CodeHawkz9-Aug-12 20:48 
Questionhow to insert default signature in Outlook using Javascript Pin
Anurag Sinha V9-Aug-12 0:20
Anurag Sinha V9-Aug-12 0:20 
Hi All,
Have a code which sends an Outlook mail using Javascript by creating an instance of ActiveX object.
I need the functionality to be such, when the user executes this code his default signature should also be added in the mail...Have tried it but to no avail..Any help would be highly appreciated...
The code goes as follows for the reference:
C#
function mailWindowOpen(mailBody) {
     outlookApp = new ActiveXObject("Outlook.Application");
     var nameSpace = outlookApp.getNameSpace("MAPI");
     mailFolder = nameSpace.getDefaultFolder(6);
     mailItem = mailFolder.Items.add('IPM.Note.FormA');
     mailItem.Subject = "Hi There!!!";
     mailItem.HTMLBody = mailBody;

     mailItem.display(0);

 }

mailBody is passed as a parameter from an aspx page, which has the Page.ClientScript.RegisterStartScript command to call this Javascript function...
-Anurag
A curious newbie

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.