Meetu Choudhary
Posts
-
visibility false of a column in gridview -
URI Format Not Supported. [modified] -
Need to delete row in gridview but must not affect that row in the database. -
URI Format Not Supported. [modified] -
visibility false of a column in gridview -
URI Format Not Supported. [modified] -
errorTry This:
//define string query ; outside the If block
string query ;
if(DropDownList1.SelectedItem.ToString()=="ALL")
{
string query = "select * from appointment where DATE > @StartDate and DATE < @EndDate ";
}
else
{
string query = "select * from appointment where DATE > @StartDate and DATE < @EndDate and DOCTOR_NAME='"+DropDownList1.SelectedItem.ToString()+"'";
}Thanks and Regards Meetu Choudhary My Web || My Blog || My Forums
-
error -
visibility false of a column in gridview -
URI Format Not Supported. [modified] -
URI Format Not Supported. [modified] -
URI Format Not Supported. [modified] -
URI Format Not Supported. [modified] -
URI Format Not Supported. [modified] -
URI Format Not Supported. [modified]See That Image is a local file but Silverlight or WCf service can't access the local path of the client system. so i uploaded that on my server using a WCF for upload files. now attaching it to the mail. as silverlight has its contrains...
Thanks and Regards Meetu Choudhary My Web || My Blog || My Forums
-
[Message Deleted][Message Deleted]
-
[Message Deleted][Message Deleted]
-
URI Format Not Supported. [modified] -
URI Format Not Supported. [modified]I am Sending a Mail with attachemts for this I have Made A WCF Which works fine when I give the Network path of the file. but I need to host It And when I try to give a URL path It Says. URI format not supported please Help My Code in WCF
public List funSendMail(Mailcls m) { List result = new List(); try { /* Create a new blank MailMessage with the from and to adreesses*/ System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage(m.Sender, m.Receiver); /*Checking the condition that the cc is empty or not if not then * include them */ if (m.Cc != null && m.Cc != string.Empty) { mailMessage.CC.Add(m.Cc); } /*Checking the condition that the Bcc is empty or not if not then * include them */ if (m.Bcc != null && m.Bcc != string.Empty) { mailMessage.Bcc.Add(m.Bcc); } //Ading Subject to the Mail mailMessage.Subject = m.Subject; //Adding the Mail Body mailMessage.Body = m.Body; /* Set the properties of the MailMessage to the values on the form as per the mail is HTML formatted */ mailMessage.IsBodyHtml = true; /* Bigining of Attachment1 process & Check the all file for a attachment */ if ((m.AttachfilesPath != null) && (m.AttachfilesPath.Count > 0)) { foreach (string s in m.AttachfilesPath) { result.Add("Attaching File : " + s); System.Net.Mail.Attachment attach = new System.Net.Mail.Attachment(s); /* Attach the newly created email attachment */ mailMessage.Attachments.Add(attach); } } /* Set the SMTP server and send the email with attachment */ System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient(); // smtpClient.Host = emailServerInfo.MailServerIP; //this will be the host in case of gamil and it varies from the service provider
-
Security ProblemI am having digital signatures with me installed on my computer.. And I am working in ASP.Net C# (2005 framework 2.0) in this web application I am trying to make some pages which sign the data using the digital signature and save it on the server in either of the format .doc or excel file PowerPoint file r HTML or pdf file ... or the data may be stored in the database (in my application db is NySQL) and as and when require i want to retrieve those file decrypt them using the digital signature and then save them to the local machine or just to view information..... this is the scenario I want to work on but no ideas of digital signature trying this since 4 days on google did't find any solution... Please Help me
Thanks and Regards Meetu Choudhary http://www.msdotnetmentor.com/