hi dear friends how can i change datagridview header color in .net 2005 - windows application(programatic or in design mode) thanks & regards
zahra yousefi yousefi105@yahoo.com
hi dear friends how can i change datagridview header color in .net 2005 - windows application(programatic or in design mode) thanks & regards
zahra yousefi yousefi105@yahoo.com
Hi, you can use following code in html code: when you use above code,you may not be able to switch to design view of aspx page,because frame is not compatible with asp.net2 but dont worry it will work properly in run time.
zahra yousefi yousefi105@yahoo.com
Hi you can use following code: Dim objMail As New System.Net.Mail.MailMessage Dim smtpClient As New System.Net.Mail.SmtpClient smtpClient.Host = "192.168.12.5" 'smtp.gmail.com or a valid smtp server smtpClient.Port = 25 '465 Dim HTML As String HTML = "sample" Dim fromAddress As New System.Net.Mail.MailAddress("SenderEmail") objMail.To.Add("ReceiverEmail") objMail.From = fromAddress objMail.CC.Add("CC Email") objMail.Subject = "Test" objMail.IsBodyHtml = True objMail.BodyEncoding = System.Text.Encoding.UTF8 objMail.Priority = Mail.MailPriority.High objMail.Body = HTML smtpClient.Send(objMail) Hope it can help,
zahra yousefi yousefi105@yahoo.com
Hi Dear friends I want to have a list of my company emails from outlook in a asp.net2 page Is there any solution.If so,please kindly send me the links where I can find more information about the matter. thank you so much
zahra yousefi yousefi105@yahoo.com
hi dear friends, I want to validate asp.net2 web controls () by javascript but but it can not recognized.(document.form1.TextBox1.value) the other point is that content pages dont have form tag, this tag is just in master page while my controls are placed in content page. Please refer me to helpful sites about this case. thank you Regards yousefi Tehran-Iran
zahra yousefi yousefi105@yahoo.com
Dear Friends, Hi I want to include a javascript functions file in master,and then use those functions in content pages,but it is not possible,It were working properly before using master content page,I mean when all my code was in one page. I appresiate anyone who can help thanks.
zahra yousefi yousefi105@yahoo.com