如何将 LINQ to SQL 查询中的文本获取到 TextBox 中?
我有一个网页,在其中为用户提供写笔记的选项。现在,当网页检查用户是否为:abc 时,它就会从 MEMO 表中提取注释。
这是我在 Page_Load() 中的代码:
using (EntityMemoDataContext em = new EntityMemoDataContext())
{
int getEntity = Int16.Parse(Session["EntityIdSelected"].ToString());
var showMemo = from r in em.EntityMemoVs_1s
where r.EntityID == getEntity
select r.Memo;
tbShowNote.Text = String.Join(@"<br />", showMemo);
}
tbShowNote 在文本框中向我显示这样的值:
test<br />test1<br />test1<br />test4<br />test4
我想要这样:
测试
测试1
测试1
测试4
测试4
I have a web page in which I am giving USER the options of writing notes. Now when ever the web page checks that a USER is:abc then it pulls up the note from the MEMO Table.
Here is my code in Page_Load():
using (EntityMemoDataContext em = new EntityMemoDataContext())
{
int getEntity = Int16.Parse(Session["EntityIdSelected"].ToString());
var showMemo = from r in em.EntityMemoVs_1s
where r.EntityID == getEntity
select r.Memo;
tbShowNote.Text = String.Join(@"<br />", showMemo);
}
tbShowNote is showing me value like this in the textbox:
test<br />test1<br />test1<br />test4<br />test4
And I want it like this:
Test
Test1
Test1
Test4
Test4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的文本框是多行的,那就更好了,您应该能够直接分配行:
Even better if your textbox is multiline you should be able to assign the lines directly:
用“\r\n”代替
怎么样?另外,请确保文本框是多行的。
What about "\r\n" instead of
? Also, make sure the text box is multiline.