Click here to Skip to main content
15,900,589 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: JavaScript Function... Pin
mr_muskurahat3-Mar-09 22:20
mr_muskurahat3-Mar-09 22:20 
GeneralRe: JavaScript Function... Pin
Sr...Frank4-Mar-09 5:34
Sr...Frank4-Mar-09 5:34 
GeneralRe: JavaScript Function... Pin
mr_muskurahat4-Mar-09 5:51
mr_muskurahat4-Mar-09 5:51 
Question[Message Deleted] [modified] Pin
JAYRAJ GIRI3-Mar-09 21:35
JAYRAJ GIRI3-Mar-09 21:35 
AnswerRe: remove Browser Pin
ABitSmart3-Mar-09 21:43
ABitSmart3-Mar-09 21:43 
QuestionHow to create and delete an appointment in outlook using asp.net code Pin
Manprit.bagga3-Mar-09 21:12
Manprit.bagga3-Mar-09 21:12 
AnswerRe: How to create and delete an appointment in outlook using asp.net code Pin
Christian Graus3-Mar-09 21:15
protectorChristian Graus3-Mar-09 21:15 
GeneralRe: How to create and delete an appointment in outlook using asp.net code Pin
Manprit.bagga3-Mar-09 21:30
Manprit.bagga3-Mar-09 21:30 
Thanks for ur reply
I am looking for code where i can integrate the outlook with asp.net
I want to create an appoint from asp.net in outlook
here is the code for that
Imports System.Reflection
Imports Outlook = Microsoft.Office.Interop.Outlook

Module Module1

Sub Main()
' Create an Outlook application.
Dim oApp As Outlook.Application = New Outlook.Application()

' Create a new AppointmentItem.
Dim oAppt As Outlook.AppointmentItem = oApp.CreateItem(Outlook.OlItemType.olAppointmentItem)

' Set some common properties.
oAppt.Subject = "Created using OOM in VB .NET"
oAppt.Body = "Hello World"
oAppt.Location = "Room 1201"

oAppt.Start = Convert.ToDateTime("05/31/2004 9:00:00 AM")
oAppt.End = Convert.ToDateTime("05/31/2004 1:00:00 PM")
oAppt.ReminderSet = True
oAppt.ReminderMinutesBeforeStart = 5
oAppt.BusyStatus = Outlook.OlBusyStatus.olBusy
oAppt.IsOnlineMeeting = False

' Save to Calendar.
oAppt.Save()

' Clean up.
oApp = Nothing
oAppt = Nothing

End Sub
End Module


but i am not able to delete that appoint from asp.net
Can u please help
GeneralRe: How to create and delete an appointment in outlook using asp.net code Pin
Christian Graus4-Mar-09 9:36
protectorChristian Graus4-Mar-09 9:36 
Questionhow to redirect user to login page if he/she is not login in the system? Pin
keyur satyadev3-Mar-09 20:30
keyur satyadev3-Mar-09 20:30 
AnswerRe: how to redirect user to login page if he/she is not login in the system? Pin
Abhishek Sur3-Mar-09 20:45
professionalAbhishek Sur3-Mar-09 20:45 
QuestionHow to verify entered password with Stored hashed password Pin
Rameez Raja3-Mar-09 20:23
Rameez Raja3-Mar-09 20:23 
AnswerRe: How to verify entered password with Stored hashed password Pin
Christian Graus3-Mar-09 21:06
protectorChristian Graus3-Mar-09 21:06 
GeneralRe: How to verify entered password with Stored hashed password Pin
Jassim Rahma11-Apr-13 0:01
Jassim Rahma11-Apr-13 0:01 
Questionnot able to delete file from visual source safe? Pin
keyur satyadev3-Mar-09 20:12
keyur satyadev3-Mar-09 20:12 
AnswerRe: not able to delete file from visual source safe? Pin
Abhishek Sur3-Mar-09 20:38
professionalAbhishek Sur3-Mar-09 20:38 
AnswerRe: not able to delete file from visual source safe? Pin
Christian Graus3-Mar-09 21:06
protectorChristian Graus3-Mar-09 21:06 
GeneralRe: not able to delete file from visual source safe? Pin
keyur satyadev3-Mar-09 22:58
keyur satyadev3-Mar-09 22:58 
QuestionHow to Attach ConfirmButtonExtender to CustomControl Button Pin
Vishal093-Mar-09 20:01
Vishal093-Mar-09 20:01 
QuestionDrop down list box? Pin
Karthick_gc3-Mar-09 19:53
Karthick_gc3-Mar-09 19:53 
AnswerRe: Drop down list box? Pin
Christian Graus3-Mar-09 20:04
protectorChristian Graus3-Mar-09 20:04 
AnswerRe: Drop down list box? Pin
rakeshs3123-Mar-09 22:41
rakeshs3123-Mar-09 22:41 
QuestionHow to create Chart using Report Control in asp.net 2.0 Pin
Jagz W3-Mar-09 19:47
professionalJagz W3-Mar-09 19:47 
AnswerRe: How to create Chart using Report Control in asp.net 2.0 Pin
Christian Graus3-Mar-09 20:06
protectorChristian Graus3-Mar-09 20:06 
GeneralRe: How to create Chart using Report Control in asp.net 2.0 Pin
Jagz W3-Mar-09 20:35
professionalJagz W3-Mar-09 20:35 

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.