<%@ page contentType="text/html;charset=GBK" %>
<%@ page import="jwzt.drm.*" %>
<%
String sMessage = "error";
    String sLicense = "";
boolean bIsPlay = false;    String strLicenseRequested = request.getParameter("challenges");
int rightid = Integer.parseInt(request.getParameter("rightId"));    DrmFile drmFile = new DrmFile();
    drmFile.nRightsId = rightid;
    if(strLicenseRequested != null)
    {
        sLicense = drmFile.getLicenseWithPublic(strLicenseRequested);
        bIsPlay = true;
    }
    else
    {
        bIsPlay = false;
    }    if( !bIsPlay )
    {
        out.println("<html><table width=\"100%\">");
        out.println("<tr><td align=center><font color=red size=4>");
        out.println(sMessage);
        out.println("</font></td></tr><tr><td align=center><input type='button' onclick='javascript:history.go(-1);';name=\"retLog\" value='返 回'/></td></tr>");
        out.println("</table></html>");
    }
    else
    {
%>
    <HTML>
    <HEAD>
    <TITLE>V2 Licensing</TITLE>
    <Script Language="JavaScript">
    function StoreV2License(hr)
    {
        netobj.StoreLicense(document.all("strlicense").value);
        window.close();
    }
    </Script>
    </HEAD>
    <BODY onload="StoreV2License()">
    <div style="display:none"><textarea id=strlicense><%=sLicense%></textarea></div>
    <OBJECT classid=clsid:A9FC132B-096D-460B-B7D5-1DB0FAE0C062 height=0 id=netobj width=0>
        <EMBED MAYSCRIPT TYPE="application/x-drm-v2" HIDDEN="true">
    </OBJECT>
    <div align=center>请点击播放按钮开始播放!</div>
    </BODY>
    </HTML>
<%
    }
%>
大家能否帮帮忙把上面的jsp代码转成asp的形式写出来,非常感谢....上面这段是drm加密系统里的其中一个文件。