Search

You searched for the word(s): userid:839857

Matching Posts

  • Re: Correct Regex for something that starts with a number a

    Hi, string pattern = @"^\d\w*$"; Will help you to solve your problem. Regex Working : above regex pattern will search any text pattern start with Any digit followed by Alphanumeric, any number of repetitions. if you are interested to learn Regex. Please check Text and Data Manipulation with Regular Expressions in .NET Development
    Posted to Getting Started (Forum) by chetan.akarte on 10/12/2009
  • Re: Using RegularExpressionValidator control for IPAddress

    Hi, Regular Expression Pattern ^(([01]?\d\d?|2[0-4]\d|25[0-5])\.){3}([01]?\d\d?|25[0-5]|2[0-4]\d)$ will check IP Address for you. Get more information about implementing above regex with RegularExpressionValidator here... Regular Expressions IP Address Validation with .net
    Posted to Getting Started (Forum) by chetan.akarte on 5/6/2009
  • Re: validator expression needed

    Hi Peter, you can use "^\w+\.(jpg|JPG|gif|GIF|jpeg|jpe)\b$" A description of the regular expression: ^\w+\. Beginning of line or string Alphanumeric, one or more repetitions Literal . [1]: A numbered capture group. [jpg|JPG|gif|GIF|jpeg|jpe] Select from 6 alternatives jpg JPG gif GIF jpeg jpe \b$ First or last character in a word End of line or string To get started with regular expression Visit:- http://www.tipsntracks.com/category/regular-expression
    Posted to Getting Started (Forum) by chetan.akarte on 4/28/2009
  • Re: Create a website from scratch or use starter kit?

    Hi, Starter kits introduce you with the power of ASP.NET. You can learn ASP.NET essentials while going through starter kit. If you are a beginner and want to modify Starter kit's fuctionality as per your requirement, its very time-consuming. I like to suggest, you first plan and then start from scratch in Visual Studio 2008. Best luck for your personal website.
    Posted to Getting Started (Forum) by chetan.akarte on 4/28/2009
  • Re: Best ASP.NET FAQ for Interviews

    Hi All, There are some more FAQ's on .NET Please Check... http://www.xfunda.com/index.php?option=com_content&view=category&layout=blog&id=28&Itemid=73
  • Re: Best CMS for ASP.NET

    Hi, BlogEngine.NET is an open source .NET blogging project that was born out of desire for a better blog platform. A blog platform with less complexity, easy customization, and one that takes advantage of the latest .NET features. You can also make some slight changes to use it as a CMS. Download it at.. http://www.dotnetblogengine.net/
    Posted to Getting Started (Forum) by chetan.akarte on 4/27/2009
  • Re: Email regular expression validation

    Hi there, get more info on Validate an email address using regular expressions with source code on implementing it with ASP.NET, VB.NET and C#.NET Thanks & Regards Chetankumar Akarte
    Posted to Web Forms (Forum) by chetan.akarte on 4/27/2009
  • Re: Reading Excel data using ASP.net (VB.net)

    Hi, Here is a good example which late you know how to Read and Display Data From an Excel File (.xsl or .xlsx) in ASP.NET. Also get complete code for VB.NET and C#.NET implementation. Please check:- http://www.tipsntracks.com/100/read-and-display-data-from-an-excel-file-xsl-or-xlsx-in-aspnet.html
    Posted to Getting Started (Forum) by chetan.akarte on 4/20/2009
  • Re: RegularExpression Validator not always working?

    Hi Kirti, Here is a good example which late you know how to tackle this problem. Also get complete code for ASP.NET, VB.NET and C#.NET implementation Regular Expressions with .net for U.S. Social Security Numbers. Please check:- http://www.tipsntracks.com/98/regular-expressions-with-net-us-social-security-numbers.html
    Posted to Web Forms (Forum) by chetan.akarte on 4/17/2009
  • Re: How to implement a "required regular expression" field

    Hi, Here is a good example which late you know how to tackle this problem. Also get complete code for ASP.NET, VB.NET and C#.NET implementation Regular Expressions with .net for U.S. Social Security Numbers. Please check:- http://www.tipsntracks.com/98/regular-expressions-with-net-us-social-security-numbers.html
    Posted to Web Forms (Forum) by chetan.akarte on 4/17/2009
Page 1 of 1 (10 items)