|
|
private void function()
C# private void function()
Methods, fields and properties with undeclared accessibility are private.
NO
Image:
posted on January 23, 2020 07:59
private string GetDisplayName(int PortalId, int UserId)
{
string UserDisplayName = "";
DotNetNuke.E...
[Read the rest of this article...]
DNN,
DisplayName
posted on January 22, 2020 06:44
public string FixTokens(string _myOriginal, string _myToken, string _myReplacement)
{
try
{
string _ReturnValue = "...
[Read the rest of this article...]
C#,
token replacement
posted on January 19, 2020 08:20
public void GetRoles()
{
DotNetNuke.Security.Roles.RoleController rc = new DotNetNuke.Security.Roles.RoleController();
var myRoles = ...
[Read the rest of this article...]
GetRoles(),
DNN 9
posted on December 24, 2019 07:30
Check if a DNN TrueFalse (bool) profile property exists and if it doesn't create a new one
USE:
CheckProfilePropertyExistsTrueFalse("Do...
[Read the rest of this article...]
DNN User Profile
posted on February 02, 2019 12:01
public string ReturnBooleanAsYes_or_No(Boolean choice)
{
 ...
[Read the rest of this article...]
bool,
boolean
posted on April 13, 2014 05:34
protected static string GenerateQueryStringParameters(HttpRequest request, params string[] queryStringKeys)
{
StringBuilder quer...
[Read the rest of this article...]
posted on January 10, 2014 06:40
public static DateTime GetFirstDayOfNextMonth(DateTime startDate)
{
if (startDate.Month == 12) // its end of year , we need ...
[Read the rest of this article...]
posted on February 17, 2013 10:20
Bind values from a custom table to a CheckBoxList bound from a DNN list
public void UpdateTrueFalseQuestions()
{
try
...
[Read the rest of this article...]
posted on December 06, 2012 07:03
public string get_image(string product_ID)
{
string functionReturnValue = null;
HttpWebRequest req = default(HttpWebRequest);
re...
[Read the rest of this article...]
HttpWebRequest,
Images,
GetResponse()
posted on January 19, 2012 05:50
Check to verify if an e-mail address has been previously registered:
public bool LookupEmail(string EmailAddress)
{
try
{
 ...
[Read the rest of this article...]
DNN User Account