|
|
www.DNNSoftware.com DNN DotNetNuke
posted on October 08, 2014 15:33
Try running . . . .
exec sp_updatestats;
SQL,
DNN
posted on September 30, 2014 09:38
function OpenDialog(url, height, width, title) {
var vurl = url;
var vheight = height;
var vwidth = width;
var v...
[Read the rest of this article...]
DNN,
jQuery,
modal
posted on September 27, 2014 07:10
using DotNetNuke.Entities.Profile;
string _value = GetUserProfilePropertyValue("MyCustomProfileField").ToString();
public string GetUserProf...
[Read the rest of this article...]
DNN,
ProfileProperty
posted on September 23, 2014 05:34
public void SetPageName(string PageName)
{
try
{
DotNetNuke.Framework.CDefault CustomPageName = (D...
[Read the rest of this article...]
DNN
posted on September 02, 2014 08:17
Solved on IIS7.Issue is in the web config the <modules tag needs to be changed to the following: <system.webServer> <mod...
[Read the rest of this article...]
DNN,
IIS 7
Posted in:
DNN,
Web.Config
posted on July 06, 2014 07:56
public void GetPreviousAgents(string _AgentRole)
{
try
{
DotNetNuke.Security.Roles.RoleController objRoleController = new DotNetNuke.Securit...
[Read the rest of this article...]
DNN,
GetUsersByRoleName,
C#
posted on June 27, 2014 06:14
#Body { background-image: url(/Portals/2/bg1.jpg);background-size: cover !important; background-attachment: fixed;}
posted on June 24, 2014 08:53
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
JavaScript.RequestRegistration(CommonJs....
[Read the rest of this article...]
posted on June 14, 2014 08:56
UPDATE UserPortals
SET IsDeleted = 1
WHERE (UserId > 5)
SQL Script
posted on April 17, 2014 06:44
Note that you must define a login page in the Admin/Site Settings module.
if (!IsPostBack)
{
if (UserId == -1)
{
Response.Redirect(Globals....
[Read the rest of this article...]