发布网友 发布时间:2022-04-23 01:30
共1个回答
热心网友 时间:2022-04-23 03:00
Page.ClientScript.RegisterStartupScript(this.GetType(), “”, "这里面填写你的js方法", true); <br>如:<br>ClientScript.RegisterStartupScript(this.GetType(), “”, "alert('这是后台调用js')", true); <br><br>其中参数中的true表示自己在你的方法两端加"<script>"标签,如果设置为false则要自己加上<script>标签.