SilverlightDesktop.aspx.cs
上传用户:zhuzg88
上传日期:2018-04-24
资源大小:868k
文件大小:4k
- // SilverlightDesktop.Net - http://www.SilverlightDesktop.net
- // Copyright (c) 2008
- // by SilverlightDesktop.Net
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
- // documentation files (the "Software"), to deal in the Software without restriction, including without limitation
- // the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
- // to permit persons to whom the Software is furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in all copies or substantial portions
- // of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
- // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- // CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- // DEALINGS IN THE SOFTWARE.
- using System;
- using System.Collections;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.HtmlControls;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Xml.Linq;
- using SilverlightDesktopCore.DAL;
- public partial class SilverlightDesktop : System.Web.UI.Page
- {
- GeneralSettings GeneralSettings = new GeneralSettings();
- protected void Page_Load(object sender, EventArgs e)
- {
- // Redirect if anonymous access is not allowed and user is not logged in
- CheckAccess();
- // Load the SilverlightDesktop control
- SilverlightDesktopControl.UserID = GetUserID();
- SilverlightDesktopControl.DesktopID = GetDesktopID();
- }
- #region GetUserID
- private int GetUserID()
- {
- int intUserID = -1;
- if (User.Identity.IsAuthenticated)
- {
- SilverlightDesktopDAL SilverlightDesktopDAL = new SilverlightDesktopDAL();
- var SilverlightDesktopUser = from DesktopUser in SilverlightDesktopDAL.SilverlightDesktopUsers
- where DesktopUser.UserName == User.Identity.Name
- select DesktopUser;
- intUserID = SilverlightDesktopUser.FirstOrDefault().UserID;
- }
- return intUserID;
- }
- #endregion
- #region GetDesktopID
- private int GetDesktopID()
- {
- int DesktopID = 0;
- string strDesktopID = Request.QueryString["ID"];
- if (strDesktopID != null)
- {
- DesktopID = ConverToNumber(strDesktopID);
- }
- return DesktopID;
- }
- #endregion
- #region CheckAccess
- private void CheckAccess()
- {
- if (!GeneralSettings.AnonymousLogin)
- {
- if (!User.Identity.IsAuthenticated)
- {
- Response.Redirect("../Default.aspx");
- Response.End();
- }
- }
- }
- #endregion
- #region ConverToNumber
- private int ConverToNumber(string value)
- {
- int number;
- bool result = Int32.TryParse(value, out number);
- if (!result)
- {
- number = 0;
- }
- return number;
- }
- #endregion
- }