Hi, I want to develope an web application using asp.net 2.0.For validation,whether javascript validation is better or using validation controls is better? Thanks in advance.
nachisaravanan
Posts
-
validation -
Server Image PathThanks for immediate reply.
-
Server Image PathThanks for immediate reply.it is web app developed using c#.i am dynamically assigning the absolute image path ( like c:/bat.gif ) to image controls at runtime.after depolying, my app is searching for bat.gif in client machine but i want my app to search for bat.gif in server machine and display it.How can i do it.
-
Server Image PathI am displaying images in my application. I want to display the images dynamically by assigning absolute path to the image controls. When i deploy my application in the web server, i could'nt view the images in the browser since it checks for the clients local path. How to solve this. Thanks in advance. Saravanan. P
-
Html reset button is called when esc button is clicked. how can i avoid it?Hi, i have developed an asp.net application.In that application i am getting the user information.i have 2 button,one web control[ok button] and anpother html control [reset button].While entering the user information,when i press esc button it is calling reset button and all the fields values are resetted. how can avoid this problem? i have seen this problem in many of the sities.[Example - Rediff.com while creating new user] Any ideas? Thankz in advance. With Regards [S.P.Saravanan]
-
Error:- Could not access 'CDO.Message' object.Yes,i used System.Net.Mail namespace in vs2005.Do you have any alternate solution for my problem?if any,please kindly reply.
-
Error:- Could not access 'CDO.Message' object.hi thanks for replying me. i have used my company mail server but i am receiving the same error.i tried this in vs2003 but in vs2005 it is working fine.
-
Error:- Could not access 'CDO.Message' object.Hi, I tried to send mail from c# windows application but i am unable to send the mail.i am getting the following error. An unhandled exception of type 'System.Web.HttpException' occurred in system.web.dll Additional information: Could not access 'CDO.Message' object. The code i wrote is System.Web.Mail.MailMessage mailMsg = new MailMessage(); mailMsg.From ="chand.p@icinfotech.com"; mailMsg.To = "chand.p@icinfotech.com"; mailMsg.Priority = MailPriority.High; mailMsg.Subject = subject; mailMsg.Body = body; mailMsg.BodyFormat = System.Web.Mail.MailFormat.Html; MailAttachment sFile = new MailAttachment(attachment); mailMsg.Attachments.Add(sFile); SmtpMail.SmtpServer = "127.0.0.1"; SmtpMail.Send(mailMsg); reply me if any one know the solution for this problem.