Sometimes you have to pull a date from Oracle in a cleaner format, this is one way to achieve the format you want.
Category: CSharp
Bring Application Back Into Focus
Sometimes when you are running long processes your application can get away from you and you need to bring the application back into focus. While there are many that may have arguments for or against this method this is one way that has always worked for me.
Windows Login Page Restriction
Sometimes you have to restrict the visitor of a page to a username, if you don’t want to take the time to build a database you can simply use the username on the domain. In the code below make sure you replace “<DOMAIN>” with your companies domain
C# ASPX – Force SSL
Why would I need this? If you have a page that loads in HTTP (unsecure) and HTTPS (secure) you may have a need for this when requesting information on a form that involves private information. What is “Private” information Up to your discretion but a site (http://support.exware.com/ssl.html) that I found…
Page View Details
DISCLAIMER: Before you put this script in place make sure you have some kind of disclaimer on your site to state what kind of data you record from the visitor.
SQL Statement Validator
Reference: http://stackoverflow.com/questions/3276035/code-to-validate-sql-scripts
Page URL With Changing Variables
Often I’ve had to build a page that didn’t allow the datagrid or listview built in sort options so I came up with this function so that you can keep filters and change the sorting and direction of the page.
You must be logged in to post a comment.