command

  • asp .net repeater itemcommand command name common repeater control item operations

    This is only one small snippet illustrating some functionality. I will add to this blog from my previous usage with Repeater control over time or per request. In many deployments, I prefer to use Repeater or ListView rather than Grids.… Continue reading

  • directory info get files show directories C# .Net

    There is sometimes a misunderstanding between a “file” and a “folder” in filesystems. In C# .Net the following is often used to list all “files” in a folder. However, even though you can specify to search containing subdirectories, the above… Continue reading

  • Keep Batch File Open to enter more commands

    Typically the solution you will see to this question upon googling is to add “pause” to the end of your batch file. This will keep the batch open, but it will not allow you to enter additional commands and after… Continue reading

  • Reset Password from Command Prompt in Server 2008

    For a developer or IT admin working in Windows Server 2008 environment, you may have noticed ctrl+alt+del does not work over remote connection and you can no longer change your password from control panel. The best solution to this in… 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