我正在尝试找出一种可以使用 C# 将 html 代码写入 SharePoint Web 部件的方法。我什至不知道这是否可能,但我假设它是可能的。在 JavaScript 中它只是类似的东西,document.write("<br>" + variable + "</b>")
所以我只是想弄清楚它在 C# 中是如何工作的。有比这更大的图景,但这是我坚持的基本部分。
我希望 HTML 代码位于下面的for
循环中。
这是代码:
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Utilities;
using System.Web;
namespace CSharpAttempt.VisualWebPart1
{
public class getTheSPItems
{
public void Page_Load(object sender, EventArgs e)
{
int i;
for (i = 0; i <= 10; i++)
{
string theHtmlString = "<b>" + i + "</b>";
Response.Write(theHtmlString);
}
}
}
public partial class VisualWebPart1UserControl : UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}