惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
有赞技术团队
有赞技术团队
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
Vercel News
Vercel News
F
Fortinet All Blogs
Last Week in AI
Last Week in AI
M
MIT News - Artificial intelligence
小众软件
小众软件
月光博客
月光博客
A
About on SuperTechFans

博客园 - IORICC

使用代码管理SharePoint页面中的WebPart jQuery的timeOut超时设置和event事件处理 动态调用WebService 解决第三方DLL没有强签名的问题 批处理命令大全 命令行编译Solution(转) 用SQL语句修改字段的默认值 C#中反射调用带out参数的方法 - IORICC - 博客园 截屏Code 自定义数据类型 如何创建和使用Web Service代理类 乘法 Javascript制作进度条 用C#实现HTTP协议下的多线程文件传输 javascript读写XML文件 XML动态查询 XML动态排序(1) VS.NET 2003 控件命名规范 Transact_SQL小手册
javascript获取.net控件的ClientId - IORICC - 博客园
IORICC · 2010-07-27 · via 博客园 - IORICC

<script language="javascript" type="text/javascript">
        function show() {
            if (document.getElementById("<%=RBut1.ClientID%>").checked == true) {
                document.getElementById("<%=lblQueryID.ClientID%>").innerHTML = "RunIDs: ";
            }
            if (document.getElementById("<%=RBut2.ClientID%>").checked == true) {
                document.getElementById("<%=lblQueryID.ClientID%>").innerHTML = "RunQueryID: ";
            }
        }
    </script>
    <table border="0" style="width: 100%;">
        <tr>
            <td>
                We can use a Run Query ID or Runs' ID to serach the unanalyzed results for automation
                runs.<br />
            </td>
        </tr>
        <tr>
            <td>
                <asp:RadioButton ID="RBut1" runat="server" Text="RunIDs (e.g 937311;940816;940970)"
                    GroupName="W" Checked="True" onclick="show()" />
            </td>
        </tr>
        <tr>
            <td>
                <asp:RadioButton ID="RBut2" runat="server" Text="RunQueryID (e.g 156081)" GroupName="W"
                    onclick="show()" />
            </td>
        </tr>
        <tr>
            <td>
                <asp:Label ID="lblQueryID" runat="server" Text="RunIDs: " Font-Bold="True" Font-Size="Medium"></asp:Label>
            </td>
        </tr>
    </table>

posted on 2010-07-27 11:21  IORICC  阅读(352)  评论()    收藏  举报