Click here to Skip to main content
15,923,219 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Barcode image is not showing in Windows Vista....... Pin
Ashfield4-Oct-08 0:18
Ashfield4-Oct-08 0:18 
QuestionRetriving images and files from other server? Pin
Member 38798813-Oct-08 18:37
Member 38798813-Oct-08 18:37 
AnswerRe: Retriving images and files from other server? Pin
Viral Upadhyay4-Oct-08 1:57
Viral Upadhyay4-Oct-08 1:57 
QuestionASP question Pin
Programmer993-Oct-08 16:46
Programmer993-Oct-08 16:46 
AnswerRe: ASP question Pin
Jaffer Mumtaz4-Oct-08 22:26
Jaffer Mumtaz4-Oct-08 22:26 
QuestionParse Text Boxes for Formatting Pin
JrunkDunc3-Oct-08 14:54
JrunkDunc3-Oct-08 14:54 
AnswerRe: Parse Text Boxes for Formatting Pin
Meax4-Oct-08 4:08
Meax4-Oct-08 4:08 
Questionsending appointment as email attachment to Groupwise Pin
janetb993-Oct-08 10:20
janetb993-Oct-08 10:20 
In vb (I know - I hear you groaning), trying to send .net (I’m using .net 2) appointment to Groupwise (Novell says it accepts iCal and iMip services). Tried a version, got the email, but when I clicked on the attachment, nothing appeared as an appointment. So, tried again, and now I get a whole new calendar (can have multiple calendars in Groupwise, e.g. work, personal) when I click on the ics file - but still no appointment. Any help appreciated... Janet

Dim filePath As String = String.Empty
 If System.IO.File.Exists("iCal\2.ics") Then
 System.IO.File.Delete("iCal\2.ics")
 End If
 Dim path As String = HttpContext.Current.Server.MapPath("iCal\")
 filePath = path + "2.ics"

 Dim myStr As String = String.Empty
 myStr = "BEGIN:VCALENDAR" & vbCrLf & _
 "VERSION:1.0" & vbCrLf & _
 "BEGIN:VEVENT" & vbCrLf & _
 "DTSTART:" & DateTime.Now.AddDays(1).ToUniversalTime().ToString("yyyyMMddTHHmmssZ") & vbCrLf & _
 "DTEND:" & (DateTime.Now.AddDays(1)).AddMinutes(35).ToUniversalTime().ToString("yyyyMMddTHHmmssZ") & vbCrLf & _
 "LOCATION:CDL" & vbCrLf & _
 "DESCRIPTION:Click the attached file to receive appointment" & vbCrLf & _
 "SUMMARY:testing another appointment" & vbCrLf & _
 "TRIGGER:-PT15M" & vbCrLf & _
 "PRIORITY:5" & vbCrLf & _
 "END:VEVENT" & vbCrLf & _
 "END:VCALENDAR"

 Dim writer As New System.IO.StreamWriter(filePath)
 writer.WriteLine(myStr)
 writer.Close()

 Dim mail As New System.Net.Mail.MailMessage("yada@emailfrom.net", "yada2@emailto.net", "test email appointment2", "click attached file2 for internet appointment")
 mail.Attachments.Add(New System.Net.Mail.Attachment(filePath))

 Dim client As New System.Net.Mail.SmtpClient("wahoo")
 client.Send(mail)
 mail.Attachments.Dispose()
 mail.Dispose()
 mail = Nothing

QuestionHow can solve "Server Error in '/' Application." error message to rescue my project? Pin
JUNEYT3-Oct-08 6:08
JUNEYT3-Oct-08 6:08 
AnswerRe: How can solve "Server Error in '/' Application." error message to rescue my project? Pin
Rocky#3-Oct-08 10:56
Rocky#3-Oct-08 10:56 
GeneralRe: How can solve "Server Error in '/' Application." error message to rescue my project? Pin
JUNEYT3-Oct-08 11:11
JUNEYT3-Oct-08 11:11 
GeneralRe: How can solve "Server Error in '/' Application." error message to rescue my project? Pin
Andreas X3-Oct-08 21:54
professionalAndreas X3-Oct-08 21:54 
GeneralRe: How can solve "Server Error in '/' Application." error message to rescue my project? Pin
JUNEYT3-Oct-08 23:02
JUNEYT3-Oct-08 23:02 
GeneralRe: How can solve "Server Error in '/' Application." error message to rescue my project? Pin
Andreas X4-Oct-08 1:27
professionalAndreas X4-Oct-08 1:27 
QuestionGenerating Help Files Pin
Peterixina3-Oct-08 6:05
Peterixina3-Oct-08 6:05 
QuestionSearch for Image and Text Pin
suresh_0013-Oct-08 4:54
suresh_0013-Oct-08 4:54 
QuestionProblem hosting ASP.NET application on IIS server 2003 Pin
Puneethnayak3-Oct-08 3:26
Puneethnayak3-Oct-08 3:26 
AnswerRe: Problem hosting ASP.NET application on IIS server 2003 Pin
Sathesh Sakthivel3-Oct-08 3:39
Sathesh Sakthivel3-Oct-08 3:39 
GeneralRe: Problem hosting ASP.NET application on IIS server 2003 Pin
Puneethnayak5-Oct-08 18:32
Puneethnayak5-Oct-08 18:32 
AnswerRe: Problem hosting ASP.NET application on IIS server 2003 Pin
ToddHileHoffer3-Oct-08 3:49
ToddHileHoffer3-Oct-08 3:49 
GeneralRe: Problem hosting ASP.NET application on IIS server 2003 Pin
Puneethnayak5-Oct-08 18:35
Puneethnayak5-Oct-08 18:35 
QuestionRe: Problem hosting ASP.NET application on IIS server 2003 Pin
Abhijit Jana3-Oct-08 4:03
professionalAbhijit Jana3-Oct-08 4:03 
AnswerRe: Problem hosting ASP.NET application on IIS server 2003 Pin
Puneethnayak5-Oct-08 18:38
Puneethnayak5-Oct-08 18:38 
GeneralRe: Problem hosting ASP.NET application on IIS server 2003 Pin
kujumban25-Nov-09 23:47
kujumban25-Nov-09 23:47 
Questionpage loader in asp.net Pin
Senthil S3-Oct-08 3:24
Senthil S3-Oct-08 3:24 

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.