你好我正在创建web API asp.net MVC,其中我有一个接受字符串html标签的帖子请求,如
<p><iframe src='https://www.youtube.com/embed/kGq7ZCth7QY' allowfullscreen='true' frameborder='0' width='100%' style=' height: 400px;'></iframe></p><p><br/></p><p>testing video post</p>
和这个字符串html我保存到数据库但是在保存在数据库中的记录之后它是一个&#34;?&#34;在iframe标记的最后添加,它看起来像
<p><iframe src='https://www.youtube.com/embed/kGq7ZCth7QY' allowfullscreen='true' frameborder='0' width='100%' style=' height: 400px;'></iframe>?</p><p><br/></p><p>testing video post</p>
所以任何人都可以了解&#34;?&#34;是自动添加,我使用EF6来保存记录。 谢谢