update

  • asp .net grid control common gridview operations update edit cancel sort paging

    There are many ways to accomplish the end result of what is displayed below. To display multiple records of data on the same page, you may alternatively use Repeater (my favorite of the dataview controls), DataList or ListView (also great).… Continue reading

  • Intro to git

    git is essentially decentralized, which seems to be the direction everything is going, so I decided to take a shot at it. I’ve used cvs, VSS, TFS, SVN and now git and I’ve got to say it is definitely pretty… Continue reading

  • C# ListBox Management Adding Removing Updating Databound Items ASP .Net

    The lambda one-liner indicated in the snippet below essentially nests at least two “for/foreach” loops. See my related article for full source. This code snippet is used to populate a drop down list of all factories containing unregistered robots where… Continue reading

  • Copy File With Update Progress in .Net

    The process of copying a file in .Net is of course very simple and straightforward. If you want to copy multiple files and update the end user on the progress of a large file copy, or copy files asynchronously while… Continue reading

  • MSSQL Quick Reference

    Snippets below have been condensed from their original sources for brevity. See references for original articles. Great reference on joins: http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins Show all tables in specific database: (MSSQL equivalent of MySql “show tables”) Insert into: Insert if not exists: Trigger… Continue reading