• Login

Snippets


C Sharp - C#

 

NO Image:
11
Try this . . . . <asp:TemplateField HeaderText="Thank You Letter"> <ItemTemplate> <asp:Label ID="lblTYLetter" runat="server" Text='&...

[Read the rest of this article...]

GridView TemplateField
11
//public DonationTrackerInfo DonationTrackerPledgeGetPledgeByID(int pledgeID) //{ // return (DonationTrackerInfo)CBO.FillObject(DataProvider.Instanc...

[Read the rest of this article...]

DNN Controller
Posted in: C Sharp - C#
04
DNN now returns the long state name when using DotNetNuke.Entities.Users.UserInfo . . . Here's an easy workaround for returning the 2 letter stat...

[Read the rest of this article...]

State Name, State Code
25
<asp:TemplateField HeaderText="Frequency"> <ItemTemplate> <asp:Label ID="lblFrequency" runat="server" Text='<%# GetFrequencyLookup...

[Read the rest of this article...]

GridView, Function
12
public static string NumberToWords(int number) { if (number == 0) return "zero"; if (number < 0) return "minus " + NumberT...

[Read the rest of this article...]

Posted in: C Sharp - C#
26
DotNetNuke.Services.Log.EventLog.EventLogController objEventLog = new DotNetNuke.Services.Log.EventLog.EventLogController(); objEventL...

[Read the rest of this article...]

DNN Event Viewer
06
public void GetPreviousAgents(string _AgentRole) { try { DotNetNuke.Security.Roles.RoleController objRoleController = new DotNetNuke.Security.Rol...

[Read the rest of this article...]

DNN, GetUsersByRoleName, C#
22
Server.MapPath specifies the relative or virtual path to map to a physical directory. Server.MapPath(".") returns the current physical ...

[Read the rest of this article...]

Posted in: C Sharp - C#
17
Note that you must define a login page in the Admin/Site Settings module. if (!IsPostBack) { if (UserId == -1) { Response.Redirect(Globals.Naviga...

[Read the rest of this article...]

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

[Read the rest of this article...]

Page 2 of 4First   Previous   1  [2]  3  4  Next   Last