⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myoutbox.res

📁 WAPmo手机网站管理平台是一款创建与管理维护WAP网站的的软件产品
💻 RES
字号:
<form action="service.asp?handle=msgbox&amp;action=deloutbox" method="post">
<xsl:choose>
<xsl:when test="vars/@id &gt; 0">
<moex:input type="hidden" name="id" value="${vars.id}" />
<table width="100%" border="1" cellpadding="5" cellspacing="0" bordercolor="#E1F0FF">
    <tr>
        <td width="100" align="right"><h3>${lang.title}</h3></td>
        <td>${sms.title}</td>
    </tr>
    <tr>
        <td width="100" align="right"><h3>${lang.content}</h3></td>
        <td><xsl:value-of select="sms/@content" disable-output-escaping="yes" /></td>
    </tr>
    <tr>
        <td width="100" align="right"><h3>${lang.sendto}</h3></td>
        <td>
            <moex:a href="user.asp?name=${sms.sendto}">${sms.sendto}</moex:a>
        </td>
    </tr>
    <tr>
        <td width="100" align="right"><h3>${lang.sendtime}</h3></td>
        <td>${moex:format_time(sms/@sendtime, 'Y-m-d H:i:s')}</td>
    </tr>
    <tr>
        <td width="100" align="right"><h3>${lang.manage}</h3></td>
        <td>
            <moex:input type="button" value="${lang.reply}" onclick="location.href = 'my.asp?handle=msgbox&amp;action=send&amp;name=${sms.sendto}&amp;id=${sms.seqid}'" class="btn" />
            <moex:input type="button" onclick="sms_del_confirm(this)" value="${lang.delete}" class="btn" />
        </td>
    </tr>
</table>
</xsl:when>
<xsl:otherwise>
<table width="100%" border="1" cellpadding="5" cellspacing="0" bordercolor="#E1F0FF">
    <tr bgcolor="#AAD5FF">
        <th width="30">${lang.choose}</th>
        <th>${lang.title}</th>
        <th width="100">${lang.sendto}</th>
        <th width="150">${lang.sendtime}</th>
        <th width="100">${lang.manage}</th>
    </tr>
    <xsl:for-each select="smses/sms">
    <tr>
        <td width="30" align="center">
            <moex:input type="checkbox" name="id" value="${$.seqid}" />
        </td>
        <td>
            <moex:a href="my.asp?handle=msgbox&amp;action=outbox&amp;id=${$.seqid}">${$.title}</moex:a>
        </td>
        <td width="100">
            <moex:a href="user.asp?name=${$.sendto}">${$.sendto}</moex:a>
        </td>
        <td width="150" align="right">${moex:format_time(./@sendtime, 'Y-m-d H:i:s')}</td>
        <td width="100" align="center">
            <moex:input type="button" value="${lang.send}" onclick="location.href = 'my.asp?handle=msgbox&amp;action=send&amp;name=${$.sendto}&amp;id=${$.seqid}'" class="btn" />
            <moex:input type="button" value="${lang.delete}" onclick="sms_del_confirm(this, ${$.seqid})" class="btn" />
        </td>
    </tr>
    </xsl:for-each>
    <tr>
        <td align="center"><input type="checkbox" onclick="TBBS.form.check(this, 'id')" /></td>
        <td colspan="4"><moex:input type="button" onclick="sms_del_all(this)" value="${lang.delete}" class="btn" /></td>
    </tr>
    <tr>
        <td colspan="5"><xsl:apply-templates select="page" mode="page0" /></td>
    </tr>
</table>
</xsl:otherwise>
</xsl:choose>
</form>
<script language="javascript">
function sms_del_confirm(obj, id)
{
    if (confirm('${lang.sms_del_confirm}'))
    {
        if (id) TBBS.form.check(obj, "id", id);
        TBBS.form.submit(obj);
    }
}

function sms_del_all(obj)
{
    if (confirm('${lang.sms_del_all_confirm}'))
    {
        TBBS.form.submit(obj);
    }
}
</script>

⌨️ 快捷键说明

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