owabasicwebpart.cs
来自「mail web part for owa exchange integrati」· CS 代码 · 共 22 行
CS
22 行
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Microsoft.SharePoint.Portal;
namespace OWABasicWebPart
{
public class OWABasicWebPart : WebPart
{
protected override void Render(System.Web.UI.HtmlTextWriter writer)
{
// This works ONLY with BASIC authentication!
string login = Context.Request.ServerVariables["AUTH_USER"];
string password = Context.Request.ServerVariables["AUTH_PASSWORD"];
string src = "/_layouts/OWARedirect.htm?l=" + login + "&p=" + password;
writer.Write("<iframe frameborder=\"0\" width=\"800\" height=\"600\" src=\"" + src + "\"/>");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?