Hi, Can anyone tell me how to retreive the SelectedValue from a RadioButtonList, using javavscript. I need to show it in alert box. Thanx:)
nikesh
Hi, Can anyone tell me how to retreive the SelectedValue from a RadioButtonList, using javavscript. I need to show it in alert box. Thanx:)
nikesh
hi all, my problem is that i want to create a exe which reads a perticular mail id on perticular mail server.functionality of this exe is ike that this exe will find the mail which r in mail box has read by user or not . if yes then i want to get reading time and i also want to know how many times user read this mail an d i want to store all the information in database. plz help me. Nikesh
Hi Apurva, Thanx apurva for solving my problem. I have one more question to u. is System.Net.Mail; namespace new in VS.NET 2.0 Thanks & Regards Nikesh sahu nikesh
Hi Anant, I read ur problem i think this can be solution of ur problem. before using this first u have add reference of System .Web . bcoz ur using windows application which automatically do noy include this reference.and write this statement on top. using System.Web.Mail; if u still face problem then let me know. MailMessage objMailMessage; objMailMessage = new MailMessage(); objMailMessage.From = "Sender ID"; objMailMessage.To = "Reciver ID"; objMailMessage.Subject = "You Subject"; objMailMessage.Body = strHTMLBody; objMailMessage.BodyFormat = MailFormat.Html; Thanks & Regards Nikesh Sahu;) // Send the Mail Message SmtpMail.Send( objMailMessage ); nikesh
Hi Apurva, yes dear. whenever user reads mail i want acknowledgement that user user read mail. Thanks & Regards Nikesh Sahu nikesh
Hi all, my problem is that i am sending mail to perticular id . now i want to do know the status that mail it is read by user and how many times using c#. please help me Thanks & Regards Nikesh Sahu;);) nikesh
Hi; this is simplest code u can use to get file name;first u have to import System.IO namespace. string path=openfiledialog1.PostedFile.FileName; string filename=Path.GetFileName(path); Response.Write(filename); it will work fine. with regards Nikesh Sahu nikesh
Hi, I didnt get your requirement correctly.like its up to you where you want to save perticular file on sever. see this article i think it will help for u. http://www.codeproject.com/aspnet/fileupload.asp Nikesh nikesh
hi susa , this is nikesh .i think you have to set command name property of button commandName="edit" in aspx page. if you will send custom error message it can be clear where the exactly problem. Nikesh Sahu nikesh
hi ajay this is nikesh.you can use html table of 2*1.Put ur datadrid in 2nd row and right ur heading in first row and set the 2 property of that table . first one align=center second one valign=center. i think it will work fine Nikesh Sahu nikesh
hi key, your code shows you didnt create instance of Patient class,only reference you declared which do not reserve any memory on jeap.simply solution is that first create instance of Patient class theh use medhods. like this private void Form1_Load(object sender, System.EventArgs e) { Patient PatientData = new Patient(); PatientData.id[0] = 0; PatientData.Lname[0] = "Smith"; PatientData.Fname[0] = "John"; PatientData.Mname[0] = "Allen"; } public class Patient { public int[] id = new int[5]; public string[] Lname = new string[5]; public string[] Fname = new string[5]; public string[] Mname = new string[5]; } it will work fine. nikesh nikesh