Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for January 2013
28
C# function to return first day of the next month
posted on January 28, 2013 14:21
/// <summary> /// Returns the first day of the next month. /// </summary> /// <example> /// i.e. If start date is 9/27/2009 ...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
21
Return SCOPE IDENTITY from a stored procedure to your custom DNN module
posted on January 21, 2013 08:06
Your SQL stored procedure: INSERT INTO Invoices (InvoiceNumber, InvoiceDate, SupplierID, ModuleID, CreatedOnDate, CreatedByUserID, PortalID) VALUES (...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
DNN
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
10
Switch Case
posted on January 10, 2013 12:18
switch(myNumber) { case "1": // DO SOMETHING ...
[Read the rest of this article...]
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)