当我动态添加元标记时,它们会呈现在一行中。
我怎样才能将它们分成单独的行
我尝试了以下代码,但这对我不起作用
Page.Title = ds.Tables[0].Rows[0]["Title"].ToString() + " by " + ds.Tables[0].Rows[0]["Author"].ToString();
Page.Controls.Add(new LiteralControl("\n"));
Page.MetaDescription = ds.Tables[0].Rows[0]["Desc"].ToString();
Page.Controls.Add(new LiteralControl("\n"));
Page.MetaKeywords = ds.Tables[0].Rows[0]["Keywords"].ToString();
Page.Controls.Add(new LiteralControl("\n"));
我正在为我的网站使用 asp.net 网络表单。感谢您提供这方面的帮助。