private void function()

Snippets


private void function()

C# private void function()

Methods, fields and properties with undeclared accessibility are private.

NO Image:
23
private string GetDisplayName(int PortalId, int UserId) {     string UserDisplayName = "";     DotNetNuke.E...

[Read the rest of this article...]

DNN, DisplayName
22
public string FixTokens(string _myOriginal, string _myToken, string _myReplacement) {  try  {   string _ReturnValue = "...

[Read the rest of this article...]

C#, token replacement
19
public void GetRoles() {  DotNetNuke.Security.Roles.RoleController rc = new DotNetNuke.Security.Roles.RoleController();  var myRoles = ...

[Read the rest of this article...]

GetRoles(), DNN 9
24
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
02
        public string ReturnBooleanAsYes_or_No(Boolean choice)         {  ...

[Read the rest of this article...]

bool, boolean
13
protected static string GenerateQueryStringParameters(HttpRequest request, params string[] queryStringKeys) { StringBuilder quer...

[Read the rest of this article...]

10
public static DateTime GetFirstDayOfNextMonth(DateTime startDate) { if (startDate.Month == 12) // its end of year , we need ...

[Read the rest of this article...]

17
Bind values from a custom table to a CheckBoxList bound from a DNN list public void UpdateTrueFalseQuestions() { try ...

[Read the rest of this article...]

06
public string get_image(string product_ID) {  string functionReturnValue = null;  HttpWebRequest req = default(HttpWebRequest);  re...

[Read the rest of this article...]

HttpWebRequest, Images, GetResponse()
19
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
Page 1 of 2First   Previous   [1]  2  Next   Last