zoukankan      html  css  js  c++  java
  • C# 调用JS 并为JS变量设置

    protected void Button1_Click(object sender, EventArgs e)
            {
                ClientScriptManager csm = this.ClientScript;
                string js = string.Format("window.dialogArguments.document.getElementById('txtEquId').value='{0}';", GetEquIds());
                js += string.Format("window.dialogArguments.document.getElementById('txtEquId').value='{0}';window.close();", GetEquNames());
                csm.RegisterStartupScript(this.GetType(), "sufei", js, true);
            }
    
    <table border="0" cellpadding="0" class="PageBottom" cellspacing="0" id="Table1"
            width="100%" align="center">
            <tr>
                <td align="center">
                    <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
                    <input type="button" value="确定" class="Button" id="Button2"  onclick="oks();"/>
                    <input type="button" value="关闭" class="Button" id="btnBack" />
                </td>
            </tr>
        </table>
    
  • 相关阅读:
    Multidimensional Arrays
    TortoiseGit
    Excel教程(14)
    Excel教程(13)
    Excel教程(12)
    Excel教程(11)
    lock
    reflect
    game
    html x
  • 原文地址:https://www.cnblogs.com/soundcode/p/2532995.html
Copyright © 2011-2022 走看看