sendsms.res

来自「WAPmo手机网站管理平台是一款创建与管理维护WAP网站的的软件产品」· RES 代码 · 共 76 行

RES
76
字号
<xsl:choose>
<xsl:when test="vars/@state = 2">
<xsl:apply-templates select="hint" />
</xsl:when>
<xsl:otherwise>
<form action="my.asp?handle=msgbox&amp;action=send" method="post">
<table width="100%" border="1" cellpadding="5" cellspacing="0" bordercolor="#E1F0FF">
    <tr bgcolor="#AAD5FF">
        <td colspan="2"><h3>${lang.send_sms}</h3></td>
    </tr>
    <xsl:if test="vars/@state = 1">
    <tr>
        <td colspan="2" id="hint">
            <h3><font color="#FF0000">${lang.sms_send_failed}</font></h3>
            <xsl:apply-templates select="hint" />
        </td>
    </tr>
    </xsl:if>
    <tr>
        <td width="40%"><h3>${lang.sendto}</h3>多个收件人用半角逗号[,]隔开,最多${permit.send_max_user}个会员</td>
        <td width="60%">
            <moex:input type="text" name="sendto" value="${vars.sendto}" style="width: 80%" />
        </td>
    </tr>
    <tr>
        <td width="40%"><h3>${lang.title}</h3>${lang.hint_title}</td>
        <td width="60%">
            <moex:input type="text" name="title" value="${vars.title}" style="width: 50%" />
        </td>
    </tr>
    <tr>
        <td width="40%">
            <h3>${lang.content}</h3>
            <div>${lang.hint_content}</div>
            <div>${lang.tag_ubb}: <xsl:choose><xsl:when test="contains(env/@ubb, 'sms')">${lang.enable}</xsl:when><xsl:otherwise><font color="#FF0000">${lang.unable}</font></xsl:otherwise></xsl:choose></div>
            <div>${lang.tag_html}: <xsl:choose><xsl:when test="contains(env/@html, 'sms')">${lang.enable}</xsl:when><xsl:otherwise><font color="#FF0000">${lang.unable}</font></xsl:otherwise></xsl:choose></div>
        </td>
        <td width="60%"><textarea name="content" style="width:80%;height:150px">${vars.content}</textarea></td>
    </tr>
    <xsl:if test="contains(env/@validate, 'sms')">
    <tr>
        <td width="40%"><h3>${lang.validate}</h3></td>
        <td width="60%"><input type="text" name="Validate" size="5" />&#x3000;<img src="validate.asp" border="0" align="absMiddle" onclick="this.src='validate.asp?' + Math.floor(Math.random() * 9999)" style="cursor:pointer" /> ${lang.hint_validate}</td>
    </tr>
    </xsl:if>
    <tr>
        <td width="40%"><h3>${lang.save_to_outbox}</h3>${lang.hint_save_to_outbox}</td>
        <td width="60%">
            <xsl:element name="input">
                <xsl:attribute name="type">radio</xsl:attribute>
                <xsl:attribute name="name">save</xsl:attribute>
                <xsl:attribute name="value">1</xsl:attribute>
                <xsl:if test="vars/@save = 1">
                <xsl:attribute name="checked">true</xsl:attribute>
                </xsl:if>
            </xsl:element>
            ${lang.yes}
            <xsl:element name="input">
                <xsl:attribute name="type">radio</xsl:attribute>
                <xsl:attribute name="name">save</xsl:attribute>
                <xsl:attribute name="value">0</xsl:attribute>
                <xsl:if test="vars/@save = 0">
                <xsl:attribute name="checked">true</xsl:attribute>
                </xsl:if>
            </xsl:element>
            ${lang.no}
        </td>
    </tr>
    <tr>
        <td colspan="2" align="center"><moex:input type="submit" value="${lang.send}" class="btn" /></td>
    </tr>
</table>
</form>
</xsl:otherwise>
</xsl:choose>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?