ControlPortal.cs
上传用户:weimol11
上传日期:2013-05-19
资源大小:1052k
文件大小:3k
- #region Copyright and License
- /*
- Copyright 2003 Jason Alexander, nGallery.org
- Design work copyright Thomas Johansen (http://www.aylarsolutions.com/)
- GOTDOTNET WORKSPACES COMMERCIAL DERIVATIVES LICENSE
- Copyright (C) 2003 Microsoft Corporation
- You can use this Software for any commercial or noncommercial purpose,
- including distributing derivative works.
- In return, we simply require that you agree:
- 1. Not to remove any copyright notices from the Software.
- 2. That if you distribute the Software in source code form you do so only
- under this License (i.e. you must include a complete copy of this License
- with your distribution), and if you distribute the Software solely in
- object form you only do so under a license that complies with this License.
- 3. That the Software comes "as is", with no warranties. None whatsoever. This
- means no express, implied or statutory warranty, including without
- limitation, warranties of merchantability or fitness for a particular
- purpose or any warranty of noninfringement. Also, you must pass this
- disclaimer on whenever you distribute the Software.
- 4. That neither Microsoft nor any contributor to the Software will be liable
- for any of those types of damages known as indirect, special, consequential,
- or incidental related to the Software or this License, to the maximum extent
- the law permits, no matter what legal theory it抯 based on. Also, you must
- pass this limitation of liability on whenever you distribute the Software.
- 5. That if you sue anyone over patents that you think may apply to the
- Software for a person's use of the Software, your license to the Software
- ends automatically.
- 6. That the patent rights, if any, licensed hereunder only apply to the
- Software, not to any derivative works you make.
- 7. That your rights under this License end automatically if you breach it in
- any way.
- */
- #endregion
- using System;
- namespace nGallery.Lib
- {
- /// <summary>
- /// This control is used to display the nGallery portal. As of the 1.6 release this is currently unimplemented.
- /// Look for this to change in an upcoming version.
- /// </summary>
- public class ControlPortal : System.Web.UI.WebControls.WebControl
- {
- #region Constructor(s)
- /// <summary>
- /// This is the base constructor.
- /// </summary>
- public ControlPortal()
- {
- }
- #endregion
- #region Various Render Methods
- /// <summary>
- /// Processes and generates the HTML for the beginning tag.
- /// </summary>
- /// <param name="writer">The HtmlTextWriter that is being written to.</param>
- public override void RenderBeginTag(System.Web.UI.HtmlTextWriter writer)
- {
- base.RenderBeginTag (writer);
- }
- /// <summary>
- /// Processes and generates the HTML for the main "body" of the control.
- /// </summary>
- /// <param name="writer">The HtmlTextWriter that is being written to.</param>
- protected override void Render(System.Web.UI.HtmlTextWriter writer)
- {
- Template template = new Template(Definitions.Templates.T_PICTURE_ITEM, this.Page);
- }
- /// <summary>
- /// Processes and generates the HTML for the beginning tag.
- /// </summary>
- /// <param name="writer">The HtmlTextWriter that is being written to.</param>
- public override void RenderEndTag(System.Web.UI.HtmlTextWriter writer)
- {
- base.RenderEndTag (writer);
- }
- #endregion
- }
- }