No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: Hello There, I have Done Similar Work For My local Client.There are Third Party Component i am using But it Provide Source Code in VB.Net So you Can Change According to your Requirement.But i Ch rage you little bit for you. Please Contact me on [email]<<Email Snipped>>[/email] For More Details … | |
Re: Dear Frd, Just try dd/mm/yyyy Format In regular Expression (optional mm,optional dd) ([1-9]|0[1-9]|[12][0-9]|3[01])[- /.]([1-9]|0[1-9]|1[012])[- /.][0-9]{4}$ mm/dd/yyyy (optional mm,optional dd) ^([1-9]|0[1-9]|1[012])[- /.]([1-9]|0[1-9]|[12][0-9]|3[01])[- /.][0-9]{4}$ mm/dd/yyyy (Exact Format) ^([01]\d)/([0-3]\d)/(\d{4})$ [URL="http://dotnet-magic.blogspot.com/2008/10/aspnet-regular-expression-for-date.html"]Regular Expression in ASP.net[/URL] [URL="http://dotnet-magic.blogspot.com/"]ASP.net Discussion[/URL] | |
Re: Hello There First Open Web.Config of your Application and Write Down Following Code in Web.Config File. in appSettings tag add key="constr" value="Provider=Microsoft.Jet.Odbc.4.0;DSN=resume;User Id=admin;Password=admin;" end appSettings tag Now open your Application and write down following Connection String OdbcConnection Objcon = new OdbcConnection(ConfigurationManager.AppSettings["constr"]); You Get More Details on [URL="http://dotnet-magic.blogspot.com/2008/10/connection-string-aspnet-with-msaccess.html"]Connection String in ASP.net[/URL] … |
The End.