Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ControlPortal.cs
Package: ngallery-source-1.6.1.zip [view]
Upload User: weimol11
Upload Date: 2013-05-19
Package Size: 1052k
Code Size: 3k
Category:
WinSock-NDIS
Development Platform:
C#
- #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
- }
- }