This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CustomWidget.ascx.cs" Inherits="SitefinityWebApp.Custom.CustomWidget" %> | |
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> | |
<div class="customwidget"> | |
<div><asp:Button ID="CreateBlog" runat="server" Text="Create Blog" | |
onclick="CreateBlog_Click" /></div> | |
<div><asp:Button ID="CreatePosts" runat="server" Text="Create Posts" | |
onclick="CreatePosts_Click" /></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<%@ Register TagPrefix="sf" Namespace="Telerik.Sitefinity.Web.UI.ContentUI" Assembly="Telerik.Sitefinity" %> | |
<%@ Register TagPrefix="sf" Namespace="Telerik.Sitefinity.Web.UI" Assembly="Telerik.Sitefinity" %> | |
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> | |
<%@ Register TagPrefix="cc1" Namespace="SitefinityWebApp.Tools" Assembly="SitefinityWebApp" %> | |
<telerik:RadListView ID="eventsList" ItemPlaceholderID="ItemsContainer" runat="server" EnableEmbeddedSkins="false" EnableEmbeddedBaseStylesheet="false"> | |
<LayoutTemplate> | |
<ul class="sfeventsList sfeventsListTitleCityDateContent"> | |
<asp:PlaceHolder ID="ItemsContainer" runat="server" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" %> | |
<%@ Register TagPrefix="sf" Namespace="Telerik.Sitefinity.Web.UI.Comments" Assembly="Telerik.Sitefinity" %> | |
<%@ Register TagPrefix="sf" Namespace="Telerik.Sitefinity.Web.UI.ContentUI" Assembly="Telerik.Sitefinity" %> | |
<%@ Register TagPrefix="sf" Namespace="Telerik.Sitefinity.Web.UI" Assembly="Telerik.Sitefinity" %> | |
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> | |
<%@ Import Namespace="Telerik.Sitefinity" %> | |
<%@ Register TagPrefix="cc1" Namespace="SitefinityWebApp.Tools" Assembly="SitefinityWebApp" %> | |
<telerik:RadListView ID="Repeater" ItemPlaceholderID="ItemsContainer" runat="server" EnableEmbeddedSkins="false" EnableEmbeddedBaseStylesheet="false"> | |
<LayoutTemplate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="HelloWorld.ascx.cs" Inherits="SitefinityWebApp.Widgets.HelloWorld.HelloWorld" %> | |
<p>Hello <asp:Literal ID="NameLiteral" runat="server" />, how are you?</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Telerik.Sitefinity.Modules.Pages; | |
using Telerik.Sitefinity.Taxonomies; | |
using Telerik.Sitefinity.Modules.Blogs; | |
using Telerik.Sitefinity.Modules.Events; | |
using Telerik.Sitefinity.Modules.News; | |
using Telerik.Sitefinity.Modules.Libraries.BlobStorage; | |
using Telerik.Sitefinity.Modules.Libraries; | |
using Telerik.Sitefinity.Modules.Forms; | |
using Telerik.Sitefinity.Modules.Ecommerce.Catalog; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="HelloWorld.ascx.cs" Inherits="SitefinityWebApp.Widgets.HelloWorld" %> | |
<p>Hello <asp:Literal ID="NameLiteral" runat="server" /></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using Telerik.Sitefinity; | |
using Telerik.Sitefinity.Modules.Blogs; | |
using Telerik.Sitefinity.Blogs.Model; | |
namespace SitefinityWebApp.Extensions | |
{ | |
public partial class test : System.Web.UI.Page | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<root> | |
<modules> | |
<module name="RadEditorStatistics" dockingZone="Bottom" visible="false" /> | |
<module name="RadEditorDomInspector" visible="false" /> | |
<module name="RadEditorNodeInspector" visible="false" /> | |
<module name="RadEditorHtmlInspector" visible="false" /> | |
</modules> | |
<tools name="MainToolbar"> | |
<tool name="ToggleAdvancedToolbars"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE clickonpublish | |
DECLARE @OldSchema AS varchar(255) | |
DECLARE @NewSchema AS varchar(255) | |
SET @OldSchema = 'dbo' | |
SET @NewSchema = 'clickonpublish' | |
DECLARE @sql AS varchar(MAX) |
OlderNewer