Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for December 2012
06
Check if an image exists - substitute missing images
posted on December 06, 2012 07:03
public string get_image(string product_ID) { string functionReturnValue = null; HttpWebRequest req = default(HttpWebRequest); req = ...
[Read the rest of this article...]
HttpWebRequest
,
Images
,
GetResponse()
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
05
Alter Table - Setting a Column Default Value
posted on December 05, 2012 04:36
ALTER TABLE MyTableName ADD CONSTRAINT DF_MyTableName DEFAULT GETDATE() FOR MyColumnName
SQL
,
Alter Table
Posted in:
SQL Scripts
Actions:
E-mail
|
Permalink
|
Comments (0)