Profile
Achievement
You have not received any achievements.ginoplusio's Recent SnippetsTagged ASP
- All /
 « Prev 1 Next »
asp function similar to php one, to truncate long words inside a string
        
        
        
            1 
        
        
            1540 
        
                    posted 16 years ago by ginoplusio
            function that return TrueVal if Condition is true else return FalseVal.
        
        
        
            0 
        
        
            1678 
        
                    posted 16 years ago by ginoplusio
            When you make a login remember to use CASE SENSITIVE on password and case insensitive on username
        
        
        
            0 
        
        
            1386 
        
                    posted 16 years ago by ginoplusio
            similar to php ereg_replace.
You can pass this pattern [^A-Za-z0-9] and "" to remove from string non alphanumerical chars:
s = ereg_replace("[^A-Za-z0-9]","",s)
I use this function to clean input fields...
        
        
        
            0 
        
        
            1470 
        
                    posted 16 years ago by ginoplusio