有个js函数shPos(o1,o2)
在c#调用:
    string o1,o2;
    o1="B1";o2="B2";
    Page.RegisterStartupScript("","<script>shPos('" + o1 + "','" + o2 + "')</script>");
   o1="B3";
   o2="B4";
    Page.RegisterStartupScript("","<script>shPos('" + o1 + "','" + o2 + "')</script>");
只有第一次调用执行.第二次调用没反应.
还有其它方法调用js函数?
谢谢!