
























<script language="javascript" type="text/javascript">
function ExpandGridView(num)
{
var prefix = "ctl00_ContentPlaceHolder1_";
var gvQuestion = document.getElementById(prefix+'gvQuestion'+num);
var imgQuestion = document.getElementById(prefix+'imgQuestion'+num);
if(gvQuestion.style.display == "none")
{
gvQuestion.style.display = "block";
imgQuestion.src = "../images/lines/CollapseMinus.gif";
imgQuestion.alt='Click to hidden questionnaire.';
}
else
{
gvQuestion.style.display = "none";
imgQuestion.src = "../images/lines/CollapsePlus.gif";
imgQuestion.alt='Click to display questionnaire.';
}
}
</script>
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。