powerrush

Stories submitted by powerrush

Custom "All or Nothing" Required Validator web control in C# (blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 10 months ago

C# code for an ASP.NET required validator web control that requires a specified set of controls to be all populated, or all empty, as a group. It inherits from the RequiredFieldValidator ASP.NET class, so it essentially works the same way, it just treats the set of controls you specify as if they were one control (in the sense of requirement). read more...

add a comment |category: |Views: 5

tags: another

Credit Card Number Validation VB.Net Function (blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 10 months ago

This VB.Net code checks the validity of a credit card number. Pass a credit card number to the function and it returns true or false based upon the CC number's validity. read more...

add a comment |category: |Views: 382

tags: another

.NET code to convert an ArrayList to a comma delimited string (CSV)(blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 10 months ago

Free .NET code that converts the contents of an ArrayList to a comma delimited string (CSV) or other character delimited string. read more...

add a comment |category: |Views: 109

tags: another

Six Custom .NET String Manipulation Functions for Everyday Use(blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 10 months ago

Six Custom .NET String Manipulation Functions / Methods for Everyday Use read more...

add a comment |category: |Views: 15

tags: another

.NET code to convert a SQL query to CSV format for output to file, etc(blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 10 months ago

Free VB.NET code to convert a SQL query to CSV format for easy output to a file, the console, or via a HttpResponse (for you ASP.NETers out there looking for an easy way to dynamically output a CSV for real-time data download) read more...

add a comment |category: |Views: 214

tags: another