call "c:\Program Files\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 msbuild MyModule.sln pause
Friday, March 16, 2012
dnn compile module
here is example of .bat file which compile dnn module from command-line:
Thursday, March 15, 2012
PopupCalendar.js
to add datapicker to text field like desribed in this post
it's required to add reference to PopupCalendar.js
it's required to add reference to PopupCalendar.js
protected void Page_Load(object sender, EventArgs e)
{
Page.ClientScript.RegisterClientScriptInclude("PopupCalendar",
ResolveUrl(
"~/js/PopupCalendar.js"));
}
Dotnetnuke Module Creator best tool for generation dotnetnuke module.
Sunday, January 8, 2012
dotnetnuke.ui.skins.skin.addmodulemessage
AddModuleMessage not working inside ajax panel,
so in order to make it work do following:
1.Add placeholder on control
<asp:PlaceHolder runat="server" id="MessagePlaceHolder" EnableViewState="false"></asp:PlaceHolder>
2.Add function to code behind:
public virtual void ShowMessage(PlaceHolder ctrl, string m, bool error = true)
{
ModuleMessage.ModuleMessageType moduleMessageType = ModuleMessage.ModuleMessageType.RedError;
if (!error)
{
moduleMessageType = ModuleMessage.ModuleMessageType.BlueInfo;
}
string msg = Localization.GetString(m, LocalResourceFile);
DotNetNuke.UI.Skins.Skin.AddModuleMessage(ctrl, msg, moduleMessageType);
}
Dotnetnuke Module Creator best tool for generation dotnetnuke module.
Thursday, December 29, 2011
dotnetnuke datepicker
Here is example how to implement datapicker in DotNetNuke:
Step 1.Below os sample of the user control containing txtStartDate textbox and Image txtStartDateImage which is related to this textbox.
When user clicks on Image datepicker popup will appear and when user selects date this date will be entered into txtStartDate and datepicker popup will be closed.
Binding will be done in code-behind class of user control , see step 2 below.
Step2. Binding in code behind, call this function on Page_load of the control or when you showing edit panel.
Don't forget to include instruction described in this post !
Step 1.Below os sample of the user control containing txtStartDate textbox and Image txtStartDateImage which is related to this textbox.
When user clicks on Image datepicker popup will appear and when user selects date this date will be entered into txtStartDate and datepicker popup will be closed.
Binding will be done in code-behind class of user control , see step 2 below.
<tr> <td valign="top" class="SubHead" style="width: 150px"> <dnn:Label ID="plStartDate" runat="server"></dnn:Label> </td> <td> <asp:TextBox ID="txtStartDate" runat="server" Width="74px" CssClass="NormalTextBox" MaxLength="100"></asp:TextBox> <asp:Image ID="txtStartDateImage" runat="server" ImageUrl="~/Images/Calendar.png" /> </td> <td> <asp:RequiredFieldValidator ID="rqdStartDate" runat="server" CssClass="NormalRed" ErrorMessage="<b>StartDate is required </b>" ControlToValidate="txtStartDate" resourcekey="rqdStartDate"></asp:RequiredFieldValidator> <asp:CompareValidator id="txtStartDateCorrectDate" runat="server" Type="Date" Operator="DataTypeCheck" ControlToValidate="txtStartDate" ErrorMessage="Please enter a valid date." resourcekey="txtStartDateCorrectDate" > </asp:CompareValidator> </td> </tr>
Step2. Binding in code behind, call this function on Page_load of the control or when you showing edit panel.
private void Bindpops() { path = DotNetNuke.Common.Utilities.Calendar.InvokePopupCal(txtStartDate); txtStartDateImage.Attributes.Add("OnClick", path); }
Don't forget to include instruction described in this post !
try our new Dotnetnuke Module Generator for fast module creation.
Wednesday, December 28, 2011
dnn create user programmatically
below is function that will create new user account in DotNetNuke:
Dotnetnuke Module Creator fast and effective dotnetnuke module creation.
private string CreateDNNUser(string UserName, string FirstName, string LastName, string Email, string Password, string Street, string City, string Region, string Country, string PostalCode, string Unit, string Telephone)
{
DotNetNuke.Entities.Users.UserInfo objUser = new DotNetNuke.Entities.Users.UserInfo();
objUser.AffiliateID = Null.NullInteger;
objUser.PortalID = this.PortalId;
objUser.IsSuperUser = false;
objUser.Email = Email;
objUser.FirstName = FirstName;
objUser.LastName = LastName;
objUser.Username = UserName;
objUser.DisplayName = FirstName +" " + LastName;
objUser.Membership.Approved = true;
objUser.Membership.Password = Password;
objUser.Membership.Email = Email ;
objUser.Membership.Username = UserName;
objUser.Membership.UpdatePassword = true;
objUser.Profile.Country = Country;
objUser.Profile.Street = Street;
objUser.Profile.City = City;
objUser.Profile.Region = Region;
objUser.Profile.PostalCode = PostalCode;
objUser.Profile.Unit = Unit;
objUser.Profile.Telephone = Telephone;
objUser.Profile.FirstName = FirstName;
objUser.Profile.LastName = LastName;
DotNetNuke.Security.Membership.UserCreateStatus objCreateStatus =
DotNetNuke.Entities.Users.UserController.CreateUser(ref objUser);
if (objCreateStatus == DotNetNuke.Security.Membership.UserCreateStatus.Success)
{
return string.Empty;
}
else
{
return objCreateStatus.ToString();
}
}
Dotnetnuke Module Creator fast and effective dotnetnuke module creation.
An error has occurred. error is currently unavailable
The most common error in DNN ,
to see the real error you have to run this query in dotnetnuke database.
Copy and past contant of LogProperties field to see an error.
And don't forget to select dotnetnuke database if you see Invalid object name 'EventLog'.
dotnetnuke-module-creator fast and effective dotnetnuke module creation.
to see the real error you have to run this query in dotnetnuke database.
select top 1 LogProperties from EventLog order by LogCreateDate Desc
Copy and past contant of LogProperties field to see an error.
And don't forget to select dotnetnuke database if you see Invalid object name 'EventLog'.
dotnetnuke-module-creator fast and effective dotnetnuke module creation.
Thursday, December 8, 2011
dotnetnuke sql
Dotnetnuke module creator (DMC) creates sql stored procedures for all data operations:
1.Getting data collection from selected tables.
2.Getting one particular record by primary key.
3.Saving (Insert/Update) one record (list/save/delete/get).
Generates two types of sql files:
1.Files with stored procedures that can be run immediately on server.
2.SqlDataProvider files that can be used for installation packages.
1.Getting data collection from selected tables.
2.Getting one particular record by primary key.
3.Saving (Insert/Update) one record (list/save/delete/get).
Generates two types of sql files:
1.Files with stored procedures that can be run immediately on server.
2.SqlDataProvider files that can be used for installation packages.
Subscribe to:
Comments (Atom)