This file contains hidden or 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
public abstract class RapidCachedDataAdapterBase<TData> | |
where TData : class | |
{ | |
protected Guid SiteID; | |
protected virtual bool AutoRefreshCache; | |
protected virtual string CacheKey; | |
protected virtual string CacheExpireKey; | |
protected virtual int CacheTimeoutMinutes; | |
public virtual TData CachedData; |
This file contains hidden or 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
<object id="video" type="application/x-silverlight-2" | |
data="data:application/x-silverlight-2," width="100%" height="100%"> | |
<param name="source" value="/_layouts/clientbin/mediaplayer.xap" /> | |
<param name="enableHtmlAccess" value="true" /> | |
<param name="windowless" value="true" /> | |
<param name="background" value="#80808080" /> | |
<param name="initParams" | |
value="mediaTitle=,mediaSource={VIDEO URL},previewImageSource={VIDEO PREVIEW IMAGE},autoPlay=true" /> | |
<param name="onresize" value="video" /> | |
<a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"> |
This file contains hidden or 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" ?> | |
<actions> | |
<add path="configuration/system.web/httpModules" | |
id="{8DD2A7B1-0223-4be8-B1B5-339B642EFB21}"> | |
<add name="MyHttpModule" | |
type="MyHttpModule, MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a1df43608d33992f" /> | |
</add> | |
</actions> |
This file contains hidden or 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
namespace MyProject.Web.UI.FieldControls | |
{ | |
using System; | |
using System.Web.UI; | |
using Microsoft.SharePoint.WebControls; | |
public abstract class UserControlFieldBase : BaseFieldControl | |
{ | |
private SPFieldUserControlBase _usercontrol; |
This file contains hidden or 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
<a name="{{ post.url }}"></a> | |
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1> | |
<div class="post-date">{{ post.date | date: "%-d %B %Y" }}</div> | |
{{ post.content }} | |
<div class="post-separator"></div> |
NewerOlder