Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
28
Linking an Address to Google Maps
posted on September 28, 2010 04:59
To create a hyperlink to a Google Map with an address use this URL in your anchor tag: http://www.google.com/maps?f=q&hl=en&q=[ADDRESS] &...
[Read the rest of this article...]
Posted in:
Web Design
Actions:
E-mail
|
Permalink
|
Comments (0)
27
How to replace carriage return with
posted on August 27, 2010 09:27
Public string ReplaceWithBR(string target) { Regex regex = new Regex(@"(\r\n|\r|\n)+"); string newText = regex.Replace(target, "<br />");...
[Read the rest of this article...]
Functions
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
27
DotNetNuke User Report Queries
posted on May 27, 2010 12:05
Below you will find a few generic SQL queries for generating reports on DNN Users. Last Activity: SELECT Users.Username, Users...
[Read the rest of this article...]
Posted in:
DNN
Actions:
E-mail
|
Permalink
|
Comments (0)
30
Verizon SMTP Port 587
posted on April 30, 2010 06:56
Configure Outlook to use port 587 for sending email In order to change your port 25 settings to port 587 in Outlook, you must do the following: ...
[Read the rest of this article...]
Posted in:
E-Mail
Actions:
E-mail
|
Permalink
|
Comments (0)
30
SQL SPLIT Function
posted on April 30, 2010 05:15
Add the helper SPLIT function to your database CREATE FUNCTION dbo.Split ( @List nvarchar(2000), @SplitOn nvarchar(5) ) RETURNS @RtnValue ...
[Read the rest of this article...]
SQL
,
FUNCTION
Posted in:
Microsoft SQL Server
Actions:
E-mail
|
Permalink
|
Comments (0)
23
Windows 7 Pro can't join to Windows Server 2003 domain server
posted on April 23, 2010 06:48
Solution was to configure the NTLM security. From Windows 7, click start, type local and open the Local Security Policy Manager. Select L...
[Read the rest of this article...]
Networking
,
Windows 7 Professional
Posted in:
Networking Problems
,
Windows 7
Actions:
E-mail
|
Permalink
|
Comments (0)
21
Check for Null Value in a Stored Procedure
posted on April 21, 2010 04:54
Within a stored procedure use an IF STATEMENT to check a parameter for a NULL VALUE if( @CustomFieldID is null) begin print 'NULL V...
[Read the rest of this article...]
Stored-Procedure
,
Null-Value
Posted in:
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
19
Date and Time
posted on April 19, 2010 05:25
Get the date and time in C# vDate = Convert.ToString(System.DateTime.Today.Date.ToShortDateString()); vTime = Convert.ToString(System.DateTime....
[Read the rest of this article...]
Date
,
Time
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
17
Web Safe Fonts
posted on March 17, 2010 05:45
Here you can find the list with the standard set of fonts common to all versions of Windows and their Mac substitutes, referred sometimes as "browser ...
[Read the rest of this article...]
Posted in:
Web Design
Actions:
E-mail
|
Permalink
|
Comments (0)
12
SEO Content Pages
posted on March 12, 2010 08:31
PROCEDURE GIBS_SEO_Content nvarchar(50) = null AS BEGIN if (len(@city)=0) begin set @city=null end SET NOCOUNT ON; ...
[Read the rest of this article...]
Posted in:
Microsoft SQL Server
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 31 of 32
First
Previous
23
24
25
26
27
28
29
30
[31]
32
Next
Last