网站建设| 数据库类| 图形图象| 程序设计| 现代办公| 操作系统| 考试认证| 网络技术| 软件工程| 电脑相关| 文学作品
网站开发| 网页制作| 操作系统| 图象图形| 考试认证| 数据库类| 程序设计| 硬件技术| 现代办公| 网络技术| 笑话频道
 
您的位置: 电脑书库首页-> 电脑文摘-> 网站开发-> ASP/ASP.NET-> 在线修改Serv-U 4.2用户密码

在线修改Serv-U 4.2用户密码
作者:佚名 来源:InterNet 加入时间:2005-3-4
相关文章 相关书籍:
  • Serv-U FTP Server 中文教程
  • Serv-U 应用教程
  • Serv-U 完全教程
  • FTP Serv-U使用手册
  • 以下代码在Serv-U 4.2上测试有效

    <%

    ' |###########################|
    ' | 网海求生者QQ:54883661 |
    ' | mail:wuyingke5155@163.com |
    ' |###########################|

    inipath="D:\Program Files\Serv-U\ServUDaemon.ini" '设置ServUDaemon.ini文件路径
    user="[USER="&request("user")&"|1]"
    pass="Password="&request("pass")
    key=request("key")
    if key<>"" then
    dim os,userlong,passlong,pl,s,ss
    Set fso=CreateObject("scripting.FileSystemObject")
    set os=fso.opentextfile(inipath,1) '读取ServUDaemon.ini
    s=os.readall
    os.close

    userlong=instr(s,user)+len(user)+2
    for i=userlong to userlong+20
    passlong=passlong+1
    if asc(mid(s,i,1))=13 then
    exit for
    end if
    next

    pl=mid(s,userlong,passlong-1)
    ss=Replace(s,user&chr(13)&chr(10)&pl,user&chr(13)&chr(10)&pass)
    set os=fso.createtextfile(inipath,true) '写入ServUDaemon.ini
    os.write ss
    os.close
    end if
    %>
    <form method="post">
    用户名:<input type="text" name="user"><br>
    新密码:<input type="text" name="pass"><br>
    <input type="submit" name="key" value="修改"><br>
    </form>


    [文章录入员:admin]

    相关文章 相关书籍:
  • Serv-U FTP Server 中文教程
  • Serv-U 应用教程
  • Serv-U 完全教程
  • FTP Serv-U使用手册
  • 本站推荐内容

    近期主机类热搜关键词:
    美国服务器 美国服务器租用 海外服务器租用 国外服务器租用

    ASP/ASP.NET
    ASP/ASP.NET
    PHP技术
    JSP技术
    XML技术
    CGI/PERL
    WEB服务器
    WordPress专题
    其它
    电脑教程阅读排行
    ·用ASP连接数据库
    ·ASP基础
    ·使用Database Acces...
    ·让网站活起来(1)
    ·创建一个简单的ASP页
    ·创建HTML表格
    ·初学者必读 ASP运行环境的搭建
    ·ASP中FSO的神奇功能
    ·VBScript 基础 使用条件...
    ·VBScript 基础 VBSc...