Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
V

Vipin Venugopal

@Vipin Venugopal
About
Posts
85
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Avoid mails to spam or bulk
    V Vipin Venugopal

    I am required to send one newsletter from our web site but when sending the newsletter these letters are either going spam or bulk. can anyone suggest a method to avoid going the newsletter mails to spam or bulk. Vipin

    ASP.NET

  • insert "-" in between words in a sentence
    V Vipin Venugopal

    insert "-" in between words in a sentence using C#

    C# csharp

  • Try Catch.
    V Vipin Venugopal

    Thank u so much for the information. Vipin

    C# performance

  • Try Catch.
    V Vipin Venugopal

    Do using of so many try-catch block in a project degrade the performance of Project. To be clearer do try catch consume more memory. Vipin

    C# performance

  • disable paste in a textbox
    V Vipin Venugopal

    On the body tag just write the following code. It will disable the right Click in a page. Vipin

    C# question

  • Error Occurs while Paging in Datagrid!.......
    V Vipin Venugopal

    on the pageindexchanged event of the datagrid write this code. DataGrid.CurrentPageIndex = e.NewPageIndex; after this line call the datagrid to load the contents again this will work fine. Vipin

    ASP.NET help question

  • Regular Expression
    V Vipin Venugopal

    Hope this expression works .{6,}\w*\d{1,} Vipin

    ASP.NET regex help

  • Parsing XML
    V Vipin Venugopal

    Can anybody help in getting the node name and node value from a XML to two arrays that is nodename in one array and node value in another array. even if there is no value for a particular node then also the array of the nodename should be there in one array and the other array should be empty. Vipin

    C# data-structures xml json help

  • Parsing XML
    V Vipin Venugopal

    Can anybody help in getting the node name and node value from a XML to two arrays that is nodename in one array and node value in another array. even if there is no value for a particular node then also the array of the nodename should be there in one array and the other array should be empty. Vipin

    XML / XSL data-structures xml json help

  • Read XML
    V Vipin Venugopal

    Can anybody help in getting the node name and node value from a XML to two arrays that is nodename in one array and node value in another array. even if there is no value for a particular node then also the array of the nodename should be there in one array and the other array should be empty. Vipin

    ASP.NET data-structures xml help

  • Retrive from XML
    V Vipin Venugopal

    the following is a xml file from which i have to get appraisal.xsn to a string can anyone plz help Sreejith Madhavan PM 30-11-2005 Ashiq Vipn

    C# xml help

  • Read XML
    V Vipin Venugopal

    can anyone help me to read the nodes and values of a XML to a multidimensional array.there is only single parent node for my xml page. Vipin

    ASP.NET data-structures xml help

  • Read XML
    V Vipin Venugopal

    can anyone help me to read the nodes and values of a XML to a multidimensional array.there is only single parent node for my xml page. Vipin

    C# data-structures xml help

  • printing forms
    V Vipin Venugopal

    The best way to print from a window application is using crystal reports. Then as my friend said all depends on what kind of application ur working with. Basically if u r to show something like a report the best way to do is by creating crystal reports. Vipin

    C# question

  • can't delete image
    V Vipin Venugopal

    if some program is using that file then there is no way u can delete that. Vipin

    ASP.NET tutorial question

  • can't delete image
    V Vipin Venugopal

    Probably u will be using the same image as wallpaper or for some other purposes. U just try it out with some other image in ur system. Vipin

    ASP.NET tutorial question

  • Best C# book?
    V Vipin Venugopal

    Wrok Programming in C# for Beginners is the best book available. Vipin

    C# csharp c++ question learning

  • Disabling the 'X' button in the caption bar
    V Vipin Venugopal

    I guess thats not possible. Even I wanted the same thing some time ago but failed to do it. i even tried with some java scripts there also i failed to get a result. So i guess it is not possible. Vipin

    C# csharp help question

  • Data Grid Table Style Allowsorting property
    V Vipin Venugopal

    can u make it little more clearer please. I didnt get u. Vipin

    C# help css wpf wcf algorithms

  • checking the string
    V Vipin Venugopal

    the best way to do email validation is by using java script. Just cut and paste the following java script. it will work fine. function emailCheck (emailStr) { var checkTLD=1; var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|in fo|pro|museum)$/; var emailPat=/^(.+)@(.+)$/; var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]"; var validChars="\[^\\s" + specialChars + "\]"; var quotedUser="(\"[^\"]*\")"; var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/; var atom=validChars + '+'; var word="(" + atom + "|" + quotedUser + ")"; var userPat=new RegExp("^" + word + "(\\." + word + ")*$"); var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$"); var matchArray=emailStr.match(emailPat); if (matchArray==null) { alert("Email address seems incorrect (check @ and .'s)"); return false; } var user=matchArray[1]; var domain=matchArray[2]; for (i=0; i<user.length; i++) { if (user.charCodeAt(i)>127) { alert("Ths username contains invalid characters."); return false; } } for (i=0; i<domain.length; i++) { if (domain.charCodeAt(i)>127) { alert("Ths domain name contains invalid characters."); return false; } } if (user.match(userPat)==null) { alert("The username doesn't seem to be valid."); return false; } var IPArray=domain.match(ipDomainPat); if (IPArray!=null) { for (var i=1;i<=4;i++) { if (IPArray[i]>255) { alert("Destination IP address is invalid!"); return false; } } return true; } var atomPat=new RegExp("^" + atom + "$"); var domArr=domain.split("."); var len=domArr.length; for (i=0;i<len;i++) { if (domArr[i].search(atomPat)==-1) { alert("The domain name does not seem to be valid."); return false; } } if (checkTLD && domArr[domArr.length-1].length!=2 && domArr[domArr.length-1].search(knownDomsPat)==-1) { alert("The address must end in a well-known domain or two letter " + "country."); return false; } if (len<2) { alert("This address is missing a hostname!"); return false; } return true; }

    Your Email Address:

    Vipin

    ASP.NET com tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups