Hi, I run a web portal where people buy tickets online. I am interested in taking their feedback 2 days after their journey. This requires me to send mails everyday to get their feedback. I created a HTML format mail which can be sent. As of now, Everyday I use a small web page and a submit button to send mails to those who have travelled. But How can I automate or schedule so that these mails are sent regularly. Is there any scheduler or can we do any automation in ASP.NET? Thanks -Sudhakar
Sudhakar Pasupunuri
Posts
-
How to scchedule sending feedback mails -
Looking for XML Web servicesHello, I am new to XML Web Services in .NET. I am looking for some of the following few FREE web services which I can use it on my website. Please suggest me some website where I can get these free webservices. (1)Sending SMS to anywhere in India (2)Collecting weather information for Indian Cities and Towns (3)Checking if an e-mail id is valid or not (4)Any othere utility webservices Thanks -Sudhakar
-
Looking for XML Web servicesHello, I am new to XML Web Services in .NET. I am looking for some of the following few FREE web services which I can use on my website. Please suggest me some websites where I can get some of these free webservices. (1)Sending SMS to anywhere in India (2)Collecting weather information for Indian Cities and Towns (3)Checking if an e-mail id is valid or not (4)Any othere utility webservices Thanks -Sudhakar
-
ASPNET send mail delivery is taking more time for yahooHi, I am using CDOSYS to send mail through ASPNET. When I run this script on my server, it is taking more time to deliver to the yahoo mail addresses whereas the same message takes fractions of seconds to reach some other mail ID's. I guess the mail might be going through yahoo spam filters. How can I make my mail message trusted to the yahoo/gmail community? Thanks -Sudhakar
-
Improve the performance of ASPNET applicationHi, I just finished my ASPNET web application. It is a e-commerce based application developed using ASPNET and Microsoft SQL server. I am finding lot of issues with the performance. How can I improve the performance of my application. Where are the possibilities to improve the application speed. Thanks -Sudhakar
-
Send a ASP.NET(1.x) mail with embedded images -
looking for free live chat softwareHi, I am developing a small e-commerce application(ASP.NET based) and planning to integrate live-chat. In this regard, I am looking for some free live chat softwares. Can any one help me with some of the good free live-chat softwares. Thanks -Sudhakar
-
Scrollbar movement Notification:Hi.. I have a specification sheet which has a horizontal scrool bar.. I would like to know what is the windows notify message sent when i move the horizontal scroll bar. I tried WM_HSCROLL but it was not working for me.. Can any one help me in this reg. Thanks Sudhakar
-
accessing Windows Files ..Thanks for the valuable info But my question here is : I want to acceess these files from windows explorer and not through code.. The end user want to open the file and want to see the contents using windows explorer..But then windows throws error that "cann't access the folder/file path is too long ".. Plz help me out in this.. Thanks Sudhakar
-
Conversion of CString to LPCWSTRThanks for the info.. It was working perfectly.. Thanks Sudhakar
-
accessing Windows Files ..Hi.. I have created some directories and sub directories using the Unicode function "CreatedirectoryW()" as the full path exceeds 260 chars..and it was succesful from the code point of view.. Though I created these when i decided to access them from windows I couldn't do so..It is throwing an error that "can't access this folder.Path is too long".. If this is the case what is the purpose of Using Unicode function to create directories which exceeds 260 chars limit?? Is there anyway we can access these files??? Thanks Sudhakar
-
Conversion of CString to LPCWSTRHi .. I want to convert my "CString" to "LPCWSTR" type.. How can I do this??? Plz help me out .. Thanks Sudhakar
-
Creating directory..I am trying to Create a Directory with Path length > 260 Characters.. Windows is not allowing me to create when length exceds 260 characters..The function i used is CreateDirectory().. When I saw the SDK Documentation it said I need to Use Unicode Version of this function for a maximum path length of 32767. I want to know wht is this Unicode version function is?? Also do i need to change any settings in Visual Studio if i want to use Unicode Functions.. If possible can any one explain me the above with an example.. Thanks Sudhakar
-
Mutilple application debuggingHi.. I have 2 VC++ Projects..Each project builds a Dll..I have a separate .exe application which will be run and this will access these 2 dll's.. Right now i can debug only one project at a time through VC++.. I want to know if there is any way by whcih I can debug the 2 projects simultaneously.. Thanks Sudhakar
-
Multiline textbox down arrow is missingI know all the above steps..But i want to know how to attach the saved image while postiing in this forum.. I didnt see any option while posting this message which says "attach ur files" .. I tried copying the image and paste it inline but tht is also not working.. Thanks Sudhakar
-
Multiline textbox down arrow is missingThat was not my problem..I am able to see the vertical scroll bar correctly but the down arrow in that scroll bar is missing..I want to put a snapshot of it as an attachement..But i am not able to find how i can do tht in this forum..can u plz tell me so that i can send a snapshot.. Thanks Sudhakar
-
Multiline textbox down arrow is missingHi.. I have a tabcontrol on a Form..On this i am adding few tabpages..On the first tabpage I used few labels and edit boxes..in the last i used a texbox control..After displaying this tabpage i am able to see all controls properly but in case of listbox control the vertical bar down arrow is missing.. can anyone help me in this.. Thanks Sudhakar
-
Catching event when a listview control columnheader is resized..Hi.. I have a listview control on a form..For this i added 3 ColumnHeader's..Later i added few items to this class..When i try to resize these columnheaders all the items in the listview are also getting resized properly.. But my question is when i try to resize any columnheader in the listview control, i want an event to be raised in my code..so are there any default listview events which are raised for this..if not how can i do this.. Thanks in advance.. -Sudhakar
-
Help files .NET applicationsThanks Stewart.. I have tried with the approach u mentioned and i am able to display my help successfully.. Initially i thought we can use .NET classes to display winhelp files.. But with ur comments i realized we have to use windows api's to display these files.. Thanks Once again.. Sudhakar
-
Help files .NET applicationsThanks Stewart.. I already had the code for the above events.. but i have the problem with the following.. -------- I have my old application in java(Microsoft VJ++) and this application uses winhelp file(.hlp) to provide help for the application. This application has a form and a help control on that..when i clicked it , it displays the help related to the form..Internally the code looks like this.. Help help = new Help(); help.showHelp(string helpfilename.hlp, string topic id); Ex; helpfilename looks like "x.hlp" Topic id as "906" --- I have converted the above application to .NET framework..I am using C# as the language.. So i want to know the equivalent function for the above.. I tried using the following code as a replacement for the above. HelpNavigator navigator = HelpNavigator.Topic; System.Windows.Forms.Help.ShowHelp(this, "helpfilename.hlp", navigator, "topic id"); So i used this code: HelpNavigator navigator = HelpNavigator.Topic; System.Windows.Forms.Help.ShowHelp(this, "x.hlp", navigator, "906"); But the above code is not poping up anything.. Can anyone plz help me.. Thanks Sudhakar