Most Basic ASP.Net User Control (ASCX), ASCX and DNN
ASCX controls are one way to add functionality/features to Dot Net Nuke (DNN)
Registration of User Control:
<%@ Register TagPrefix="uc" TagName="dnn" Src="dnn.ascx" %>
<uc:dnn runat="server"/> : how to use the control
The most basic ASCX example can be seen at
http://salearningschool.com/codes/ascx/most_basic_control/
From: http://salearningschool.com/codes/ascx/most_basic_control/dnn.ascx <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="dnn.ascx.cs" Inherits="ForDNN.dnn" %> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="DNN Test" /> From: http://salearningschool.com/codes/ascx/most_basic_control/DnnControlForm.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DnnControlForm.aspx.cs" Inherits="ForDNN.DnnControlForm" %> <%@ Register TagPrefix="uc" TagName="dnn" Src="dnn.ascx" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <uc:dnn runat="server"/> </div> </form> </body> </html>
From: http://sitestree.com/?p=1666
Categories:Root, By Sayed Ahmed
Tags:
Post Data:2014-11-12 22:47:53
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada