我的头脑中有以下法典部分:
<script type="text/javascript">
$(document).ready(function () {
$( #target ).readmytweet({
color : black ,
search : from: + <%= GetUserName() %>,
user : <%= GetUserName() %>,
width : 600,
tweets : 10,
speed : 25
});
})
</script>
protected string GetUsername()
{
return "somestring..";
}
然而,我正在收到一个错误信息:
The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
是否有任何人知道,我如何能够在不发现这一错误的情况下将我手法背后的C#变量带入这一支职?
Thanks in advance