浏览主站 | 站长合租 | 新闻资讯 | 站长学院 | 站长盈利 | HTML教程 | 网址导航 | 站长周刊 | 会员投稿 | 滚动新闻 | RSS
发新话题
打印

[要求放码] 求易家产品展示系统破解方法或破解版(源码在附件里)

求易家产品展示系统破解方法或破解版(源码在附件里)

俺折腾了好些天都没弄清破解点在哪,请各位帮帮忙,谢谢.
代码在附件里。
这是addpro.asp的源码:
<!--#include file="conn.asp"-->
<%
if session("admin")="" then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
else
if request.cookies("sundxshop")("admin")="" then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
end if
end if
%>
<title>添加新商品</title>
<%
dim count
set rs=server.createobject("adodb.recordset")
rs.open "select * from sorts order by sortsorder ",conn,1,1%>
<script language = "JavaScript">
var onecount;
onecount=0;
subcat = new Array();
<%
   count = 0
   do while not rs.eof
%>
subcat[<%=count%>] = new Array("<%= trim(rs("sorts"))%>","<%= rs("categoryid")%>","<%= rs("sortsid")%>");
<%
        count = count + 1
        rs.movenext
        loop
        rs.close
%>
  
onecount=<%=count%>;
function changelocation(locationid)
    {
    document.myform.sortsid.length = 0;
    var locationid=locationid;
    var i;
    for (i=0;i < onecount; i++)
        {
            if (subcat[1] == locationid)
            {
             document.myform.sortsid.options[document.myform.sortsid.length] = new Option(subcat[0], subcat[2]);
            }        
        }
        
    }   
function checkpro()
{
    if(checkspace(document.myform.name.value)) {
document.loginfo.username.focus();
    alert("请输入商品名称!");
return false;
  }
     if(checkspace(document.myform.price1.value)) {
document.myform.price1.focus();
    alert("请输入商品市场价格!");
return false;
  }
     if(checkspace(document.myform.price2.value)) {
document.myform.price2.focus();
    alert("请输入商品会员价格!");
return false;
  }
      if(checkspace(document.myform.vipprice.value)) {
document.myform.vipprice.focus();
    alert("请输入VIP月会员商品价格!");
return false;
  }

}
function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
    str = str + ' ';
  }
  return (str == checkstr);
}
function regInput(obj, reg, inputStr)
{
  var docSel = document.selection.createRange()
  if (docSel.parentElement().tagName != "INPUT") return false
  oSel = docSel.duplicate()
  oSel.text = ""
  var srcRange = obj.createTextRange()
  oSel.setEndPoint("StartToStart", srcRange)
  var str = oSel.text + inputStr + srcRange.text.substr(oSel.text.length)
  return reg.test(str)
}
//-->
</script>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#6B8FC8">
<tr> <td BGCOLOR="#00C382" height="20" align="center"><font color="#FFFFFF">添加新商品</font></td></tr>
<tr>  
<td bgcolor="#FFFFFF">
 
<p><font color="#FF0000">十分抱歉,你使用的可能是试用版本,试用版未提供此功能。</font></p>
<p><font color="#FF0000">如需要正式版请联系我们,正式版没有任何限制。</font></p>
<p><font color="#FF0000">网址:</font><a href="http://www.***.org"><u><font color="#0000FF">www.szok.org</font></u></a><font color="#FF0000">  
QQ:29733699</font></p>
<p> </td></tr> </table>
<!--#include file="footer.asp"-->



这是chkpro源码:
<!--#include file="conn.asp"-->
<%
if session("admin")="" then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
else
if request.cookies("sundxshop")("admin")="" then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
end if
end if
%>
<title>管理商品</title>
<%
dim selectm,selectkey,selectid
selectkey=trim(request.form(trim("selectkey")))
selectm=trim(request.form("selectm"))
if selectkey="" then
selectkey=FormatSQL(request.QueryString("selectkey"))
end if
if selectm="" then
selectm=FormatSQL(request.QueryString("selectm"))
end if
selectid=request.form("selectid")
if selectid<>"" then
if session("rank")>2 then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('你无权管理商品!');history.go(-1);</script>"
response.End
end if
conn.execute "delete from product where id in ("&selectid&")"
response.Redirect "chkpro.asp"
response.End
end if
%>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="1" BGCOLOR="#00C382">
  <tr>
    <td height="20" align="center"><font color="#FFFFFF">商品查看与修改</font></td>
  </tr>
  <tr>
    <form name="form1" method="post" action="">
      <td height="100" bgcolor="#FFFFFF">
        <%
    Const MaxPerPage=10
       dim totalPut   
       dim CurrentPage
       dim TotalPages
       dim j
       dim sql
        if Not isempty(SafeRequest("page",1)) then
          currentPage=Cint(SafeRequest("page",1))
       else
          currentPage=1
       end if
   set rs=server.CreateObject("adodb.recordset")
   select case selectm
   case ""
            rs.open "select id,name,adddate,introduce from product order by adddate desc",conn,1,1
      case "0"
   response.write "<center>请返回选择您要查询的方式!<br><br><a href=javascript:history.go(-1)>点击返回上一页</a></center>"
   response.End
   case "name"
   rs.open "select id,name,adddate,introduce from product where name like '%"&selectkey&"%' order by adddate desc",conn,1,1
   case "zuozhe"
   rs.open "select id,name,adddate,introduce from product where mark like '%"&selectkey&"%' order by adddate desc",conn,1,1
   case "chubanshe"
   rs.open "select id,name,adddate,introduce from product where introduce like '%"&selectkey&"%' order by adddate desc",conn,1,1
    end select
      if err.number<>0 then
    response.write "数据库中暂时无数据"
    end if
   
      if rs.eof And rs.bof then
           Response.Write "<p align='center' class='contents'> 数据库中暂时无数据!</p>"
       else
       totalPut=rs.recordcount
          if currentpage<1 then
              currentpage=1
          end if
          if (currentpage-1)*MaxPerPage>totalput then
         if (totalPut mod MaxPerPage)=0 then
           currentpage= totalPut \ MaxPerPage
         else
            currentpage= totalPut \ MaxPerPage + 1
         end if
          end if
           if currentPage=1 then
               showContent
               showpage totalput,MaxPerPage,"chkpro.asp"
           else
              if (currentPage-1)*MaxPerPage<totalPut then
                rs.move  (currentPage-1)*MaxPerPage
                dim bookmark
                bookmark=rs.bookmark
                showContent
                 showpage totalput,MaxPerPage,"chkpro.asp"
            else
             currentPage=1
                showContent
                showpage totalput,MaxPerPage,"chkpro.asp"
           end if
        end if
              end if
       sub showContent
          dim i
       i=0%>
        <table width="95%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#CCCCCC">
          <tr bgcolor="#FFFFFF" align="center" height="20">
            <td width="30%">商品名称</td>
            <td width="45%">商品简介</td>
            <td width="17%">加入时间</td>
            <td width="8%">选 择</td>
          </tr>
          <%
    do while not rs.eof%>
          <tr bgcolor="#FFFFFF" align="center">
            <td align="left"> <a href=editpro.asp?id=<%=rs("id")%>>
                <% if len(trim(rs("name")))>20 then
   response.write left(trim(rs("name")),18)&"..."
   else
   response.write trim(rs("name"))
   end if%>
                </a></td>
            <td align="left">
              <%if len(trim(rs("introduce")))>30 then
   response.write left(trim(rs("introduce")),28)&"..."
   else
   response.write trim(rs("introduce"))
   end if%>
            </td>
            <td nowrap><%=rs("adddate")%></td>
            <td align="center"><input name="selectid" type="checkbox" id="selectid" value="<%=rs("id")%>"></td>
          </tr>
          <%i=i+1
   if i>=MaxPerPage then Exit Do
   rs.movenext
    loop
    rs.close
    set rs=nothing%>
          <tr bgcolor="#FFFFFF">
            <td height="30" colspan="4" align="right">全选 <input type="checkbox" name="checkbox2" value="Check All" > <input type="submit" name="Submit" value="删 除" >
                   </td>
          </tr>
        </table>
        <%  
    End Sub   
  
    Function showpage(totalnumber,maxperpage,filename)  
      Dim n
      
    If totalnumber Mod maxperpage=0 Then  
     n= totalnumber \ maxperpage  
    Else
     n= totalnumber \ maxperpage+1  
    End If
   
    Response.Write "<form method=Post action="&filename&"?selectm="&selectm&"&selectkey="&selectkey&" >"  
    Response.Write "<p align='center' class='contents'> "  
    If CurrentPage<2 Then  
     Response.Write "<font class='contents'>首 页 上一页</font> "  
    Else  
     Response.Write "<a href="&filename&"?page=1&selectm="&selectm&"&selectkey="&selectkey&" class='contents'>首 页</a> "  
     Response.Write "<a href="&filename&"?page="&CurrentPage-1&"&selectm="&selectm&"&selectkey="&selectkey&" class='contents'>上一页</a> "  
    End If
   
    If n-currentpage<1 Then  
     Response.Write "<font class='contents'>下一页 末 页</font>"  
    Else  
     Response.Write "<a href="&filename&"?page="&(CurrentPage+1)&"&selectm="&selectm&"&selectkey="&selectkey&" class='contents'>"  
     Response.Write "下一页</a> <a href="&filename&"?page="&n&"&selectm="&selectm&"&selectkey="&selectkey&" class='contents'>末 页</a>"  
    End If  
     Response.Write "<font class='contents'> 页次:</font><font class='contents'>"&CurrentPage&"</font><font class='contents'>/"&n&"页</font> "  
     Response.Write "<font class='contents'> 共有"&totalnumber&"种商品 "
     Response.Write "<font class='contents'>转到第:</font><input type='text' name='page' size=2 maxlength=10 class=smallInput value="&currentpage&">页"  
     Response.Write " <input type='submit'  class='contents' value='跳转' name='cndok' ></form>"  
    End Function  
   %></td>
    </form>
  </tr>
</table>
<br>
<table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" BGCOLOR="#00C382">
  <tr>
    <td align="center"><font color="#FFFFFF">商品查询</font></td>
  </tr>
  <tr bgcolor="#FFFFFF">
    <form name="form2" method="post" action="chkpro.asp">
      <td>
   <table width="80%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#CCCCCC">
          <tr bgcolor="#FFFFFF" align="center">
            <td width="35%"> <input name="selectkey" type="text" id="selectkey"  value="请输入关健字">
            </td>
            <td width="45%"> <select name="selectm" id="select">
                <OPTION VALUE="name">按商品名称</OPTION>
                <OPTION VALUE="zuozhe">按商品品牌</OPTION>
                <OPTION VALUE="chubanshe">按商品简介</OPTION>
              </select> </td>
            <td width="20%"><input type="submit" name="Submit" value="查 询" ></td>
          </tr>
        </table></td>
    </form>
  </tr>
</table>
<!--#include file="footer.asp"-->
<script language=javascript>
function test()
{
  if(!confirm('确认删除吗?')) return false;
}
function chkkey()
{
if(checkspace(document.form2.selectkey.value.length=0)){
document.form2.selectkey.focus();
alert("请输入查询关键字")
return false;
}
}

function mm()
{
   var a = document.getElementsByTagName("input");
   if(a[0].checked==true){
   for (var i=0; i<a.length; i++)
      if (a.type == "checkbox") a.checked = false;
   }
   else
   {
   for (var i=0; i<a.length; i++)
      if (a.type == "checkbox") a.checked = true;
   }
}
</script>







这是chkserver.asp的源码:
<% Option Explicit
if session("admin")="" then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
else
if request.cookies("sundxshop")("admin")="" then
conn.close
set conn = nothing
response.Write "<script language='javascript'>alert('请先登录!');history.go(-1);</script>"
response.End
end if
end if

Dim ObjTotest(26,4)
ObjTotest(0,0) = "MSWC.AdRotator"
ObjTotest(1,0) = "MSWC.BrowserType"
ObjTotest(2,0) = "MSWC.NextLink"
ObjTotest(3,0) = "MSWC.Tools"
ObjTotest(4,0) = "MSWC.Status"
ObjTotest(5,0) = "MSWC.Counters"
ObjTotest(6,0) = "IISSample.ContentRotator"
ObjTotest(7,0) = "IISSample.PageCounter"
ObjTotest(8,0) = "MSWC.PermissionChecker"
ObjTotest(9,0) = "Scripting.FileSystemObject"
ObjTotest(9,1) = "(FSO 文本文件读写)"
ObjTotest(10,0) = "adodb.connection"
ObjTotest(10,1) = "(ADO 数据对象)"

ObjTotest(11,0) = "SoftArtisans.FileUp"
ObjTotest(11,1) = "(SA-FileUp 文件上传)"
ObjTotest(12,0) = "SoftArtisans.FileManager"
ObjTotest(12,1) = "(SoftArtisans 文件管理)"
ObjTotest(13,0) = "LyfUpload.UploadFile"
ObjTotest(13,1) = "(刘云峰的文件上传组件)"
ObjTotest(14,0) = "Persits.Upload.1"
ObjTotest(14,1) = "(ASPUpload 文件上传)"
ObjTotest(15,0) = "w3.upload"
ObjTotest(15,1) = "(Dimac 文件上传)"
ObjTotest(16,0) = "JMail.SmtpMail"
ObjTotest(16,1) = "(Dimac JMail 邮件收发) <a href='http://www.ajiang.net'>中文手册下载</a>"
ObjTotest(17,0) = "CDONTS.NewMail"
ObjTotest(17,1) = "(虚拟 SMTP 发信)"
ObjTotest(18,0) = "Persits.Mailgraph2er"
ObjTotest(18,1) = "(ASPemail 发信)"
ObjTotest(19,0) = "SMTPsvg.Mailer"
ObjTotest(19,1) = "(ASPmail 发信)"
ObjTotest(20,0) = "DkQmail.Qmail"
ObjTotest(20,1) = "(dkQmail 发信)"
ObjTotest(21,0) = "Geocel.Mailer"
ObjTotest(21,1) = "(Geocel 发信)"
ObjTotest(22,0) = "IISmail.Iismail.1"
ObjTotest(22,1) = "(IISmail 发信)"
ObjTotest(23,0) = "SmtpMail.SmtpMail.1"
ObjTotest(23,1) = "(SmtpMail 发信)"

ObjTotest(24,0) = "SoftArtisans.ImageGen"
ObjTotest(24,1) = "(SA 的图像读写组件)"
ObjTotest(25,0) = "W3Image.Image"
ObjTotest(25,1) = "(Dimac 的图像读写组件)"
public IsObj,VerObj
'检查组件支持情况及版本
dim i
for i=0 to 25
on error resume next
IsObj=false
VerObj=""
dim TestObj
set TestObj=server.CreateObject(ObjTotest(i,0))
If -2147221005 <> Err then
  IsObj = True
  VerObj = TestObj.version
  if VerObj="" or isnull(VerObj) then VerObj=TestObj.about
end if
ObjTotest(i,2)=IsObj
ObjTotest(i,3)=VerObj
next
'检查组件是否被支持及组件版本
sub ObjTest(strObj)
on error resume next
IsObj=false
VerObj=""
dim TestObj
set TestObj=server.CreateObject (strObj)
If -2147221005 <> Err then
  IsObj = True
  VerObj = TestObj.version
  if VerObj="" or isnull(VerObj) then VerObj=TestObj.about
end if
End sub
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" c>
<TITLE>ASP探针</TITLE>
<style>
<!--
BODY
{
FONT-FAMILY: 宋体;
FONT-SIZE: 9pt
}
TD
{
FONT-SIZE: 9pt
}
A
{
COLOR: #000000;
TEXT-DECORATION: none
}
A:hover
{
COLOR: #000000;
TEXT-DECORATION: underline
}
.input
{
BORDER: #111111 1px solid;
FONT-SIZE: 9pt;
BACKGROUND-color: #ffffff
}
.backs
{
BACKGROUND-COLOR: #6B8FC8;
COLOR: #ffffff;
}
.backq
{
BACKGROUND-COLOR: #FFFFFF
}
.backc
{
BACKGROUND-COLOR: #6B8FC8;
BORDER: medium none;
COLOR: #ffffff;
HEIGHT: 18px;
font-size: 9pt
}
.fonts
{
COLOR: #000000
}
-->
</STYLE>
</HEAD>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" id="AutoNumber3" height="0" width="100%">
<tr> <td align="center"><p><font class=fonts>服务器的有关参数</font> </p>
                          <table width=600 border=0 cellpadding=0 cellspacing=1 bgcolor="#6B8FC8">
                            <tr bgcolor="#FFFFFF" height=18>
         <td align=left> 服务器名</td><td> <%=Request.ServerVariables("SERVER_NAME")%></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 服务器IP</td><td> <%=Request.ServerVariables("LOCAL_ADDR")%></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 服务器端口</td><td> <%=Request.ServerVariables("SERVER_PORT")%></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 服务器时间</td><td> <%=now%></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> IIS版本</td><td> <%=Request.ServerVariables("SERVER_SOFTWARE")%></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 脚本超时时间</td><td> <%=Server.ScriptTimeout%> 秒</td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 本文件路径</td><td> <%=server.mappath(Request.ServerVariables("SCRIPT_NAME"))%></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 服务器CPU数量</td><td> <%=Request.ServerVariables("NUMBER_OF_PROCESSORS")%>
                                个</td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 服务器解译引擎</td>
                              <td> <%=ScriptEngine & "/"& ScriptEngineMajorVersion &"."&ScriptEngineMinorVersion&"."& ScriptEngineBuildVersion %></td>
                            </tr>
                            <tr bgcolor="#FFFFFF" height=18>
                              <td align=left> 服务器操作系统</td><td> <%=Request.ServerVariables("OS")%></td>
                            </tr>
                          </table>
                          <br>
                           <font class=fonts>组件支持情况</font>
<%
Dim strClass
strClass = Trim(Request.Form("classname"))
If "" <> strClass then
Response.Write "<br>您指定的组件的检查结果:"
ObjTest(strClass)
   If Not IsObj then
  Response.Write "<br><font color=red>很遗憾,该服务器不支持 " & strclass & " 组件!</font>"
   Else
  Response.Write "<br><font class=fonts>恭喜!该服务器支持 " & strclass & " 组件。该组件版本是:" & VerObj & "</font>"
   End If
   Response.Write "<br>"
end if
%> <br>
■ IIS自带的ASP组件
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#6B8FC8" width="600">
<tr height=18 class=backs align=center> <td width=320>组 件 名 称</td><td width=130>支持及版本</td></tr>
<%For i=0 to 10%> <tr height="18" class=backq> <td align=left> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td><td align=left>  
<%
  If Not ObjTotest(i,2) Then
   Response.Write "<font color=red><b>×</b></font>"
  Else
   Response.Write "<font class=fonts><b>√</b></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
  End If%> </td></tr> <%next%> </table><br>
  ■ 常见的文件上传和管理组件
  <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#6B8FC8" width="600">
<tr height=18 class=backs align=center> <td width=320>组 件 名 称</td><td width=130>支持及版本</td></tr>
<%For i=11 to 15%> <tr height="18" class=backq> <td align=left> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td><td align=left>  
<%
  If Not ObjTotest(i,2) Then
   Response.Write "<font color=red><b>×</b></font>"
  Else
   Response.Write "<font class=fonts><b>√</b></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
  End If%> </td></tr> <%next%> </table><br>
  ■ 常见的收发邮件组件
  <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#6B8FC8" width="600">
<tr height=18 class=backs align=center> <td width=320>组 件 名 称</td><td width=130>支持及版本</td></tr>
<%For i=16 to 23%> <tr height="18" class=backq> <td align=left> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td><td align=left>  
<%
  If Not ObjTotest(i,2) Then
   Response.Write "<font color=red><b>×</b></font>"
  Else
   Response.Write "<font class=fonts><b>√</b></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
  End If%> </td></tr> <%next%> </table><br>
  ■ 图像处理组件
  <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#6B8FC8" width="600">
<tr height=18 class=backs align=center> <td width=320>组 件 名 称</td><td width=130>支持及版本</td></tr>
<%For i=24 to 25%> <tr height="18" class=backq> <td height="39" align=left> <%=ObjTotest(i,0) & "<font color=#888888> " & ObjTotest(i,1)%></td><td align=left>  
<%
  If Not ObjTotest(i,2) Then
   Response.Write "<font color=red><b>×</b></font>"
  Else
   Response.Write "<font class=fonts><b>√</b></font> <a title='" & ObjTotest(i,3) & "'>" & left(ObjTotest(i,3),11) & "</a>"
  End If%> </td></tr> <%next%> </table><br>
  <font color="#000000" class=fonts>其他组件支持情况检测</font><br>
在下面的输入框中输入你要检测的组件的ProgId或ClassId。
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#6B8FC8" width="600">
<form action=<%=Request.ServerVariables("SCRIPT_NAME")%> method=post id=form1 name=form1>
<tr height="18" class=backq> <td align=center height=30> <input class=input type=text value="" name="classname" size=40>
<input type=submit value=" 确 定 " class=backc id=submit1 name=submit1> <input type=reset value=" 重 填 " class=backc id=reset1 name=reset1>
</td></tr> </form></table>
                         </div></td></tr> </table>
</BODY>
</HTML>





这是conn.asp的源码:<!--#include file="funct.asp"-->
<%
dim conn,connstr,TimesDB,rs
TimesDB="#sundxShopssdcuoyy.asp"
c & Server.MapPath(""&TimesDB&"")
On Error Resume Next
Set conn = Server.CreateObject("ADODB.Connection")
conn.open connstr
If Err Then
  err.Clear
  Set Conn = Nothing
  Response.Write "数据库连接出错,请检查连接字串。"'注释,需要把这几个字翻译成英文。
  Response.End
End If
%>
<meta http-equiv="Content-Type" c>
<link href="../include/css.css" rel="stylesheet" type="text/css">
<style>
td{font-size:9pt;line-height:120%;color:#353535}
body{font-size:9pt;line-height:120%}
a:link          { color: #000000; text-decoration: none }
a:visited       { color: #000000; text-decoration: none }
a:active        { color: #000000; text-decoration: none }
a:hover         { color: #336699; text-decoration: none; position: relative; right: 0px; top: 1px }
</style>
<STYLE type=text/css>
.pad {
PADDING-LEFT: 150px
}
</style>
<body bgcolor="#FFFFFF" leftmargin="4" topmargin="4" marginwidth="0" marginheight="0">

[ 本帖最后由 danyjing 于 2007-11-14 11:05 编辑 ]

附件

(2.99 MB)

2007-11-14 11:05, 下载次数: 2388

这是源码

TOP

二.内容规范化
发帖寻求帮助时请详细描述问题发生的情况:
源码名称:
下载地址:
出现问题:
有条件的话,最好截图和将出错信息随帖附上.你描述的情况越详细具体,别人就越容易判断故障原因并给出相应的解决方法,你解决问题的机会就越大.


你那种问法估计没几个人能答的上来.不会那么巧你说的那个名字的程序.正好别人也知道的..

站长中国--和中国站长一起成长

这个世界没有人会可怜你,因为大家都在等着你可怜

只看帖不回帖的人倒没什么..只回帖不看帖的人才是最可恶的


有些事情,我还没有权利去做;有些快乐,我还没有权利去享受;而有些责任,我已经必须去承担。

TOP

?>

TOP

没讲明白错误所在

TOP

应该不是源码错误,而是源码有加密了,LZ要破解

TOP

发新话题