使用Vbscript进行输入校正 [英] Input Correction Using Vbscript

查看:82
本文介绍了使用Vbscript进行输入校正的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的Hta使用vbscript添加书签.当用户键入网址,例如 http://www.Google.com/时,它可以正常工作,但是当用户键入www时仅限.google.com,它添加了一个按钮,但是这次按钮不起作用,并最终显示错误的地址错误.代码-

My Hta add bookmark using vbscript. when user type Web address like http://www.Google.com/ it works well but when user type www.Google.com only,it add a button but this time button doesn't work and ended up showing an error of invalid address. code --

      <HTML xmlns:IE>
      <HEAD>

       <TITLE>Bookmarks</TITLE>

     <HTA:APPLICATION 
      ID="appbook"
      VERSION="1.0"
     APPLICATIONNAME="Bookmarks"
      SYSMENU="yes"
MAXIMIZEBUTTON="Yes"
MINIMIZEBUTTON="yes"
BORDER="thin"
    ICON="img\img.icoh"
INNERBORDER="thin"
SCROLL="Yes"
    SINGLEINSTANCE="no"
WINDOWSTATE="Maximize"
    CONTEXTMENU="NO"
     >
    <BODY>
    <SCRIPT LANGUAGE="VBScript">

    Sub Window_OnLoad
      window.offscreenBuffering = True
  Set objFSO = CreateObject("Scripting.FileSystemObject")
     Set objFile = objFSO.OpenTextFile("windowssettinguser.ini", 1)
     strContents = objFile.ReadAll
   objFile.Close

    strHTML = UserArea.innerHTML
    strHTML = strContents
    UserArea.innerhtml = strhtml
    end sub

    sub addlink1
    firstresponse = inputbox("Please Enter Web Address Of Your Favourite Web Page Or Item. NOTE THAT - Use ''http://'' In Front Of Your Web Adress Either You Will Be Dealing With A Error." ,"Add New Address  ")
    if firstresponse = "" then
        alert "enter something"
     else
       secondresponse = inputbox("Please Enter Name Of Your Desire Which Replace 'Your Link Here' In Main Window.","LinkzMe - Edit Button")
      if secondresponse = "" then
      alert "Enter something"
     else

      Set objFSO = CreateObject("Scripting.FileSystemObject")
     Set objFile = objFSO.OpenTextFile("windowssettinguser.ini", 2)
      objFile.Writeline "<input type=" & chr(34) & "button" & chr(34) & "class=" & chr(34) & "button" & chr(34) & "value=" & chr(34) & secondresponse & chr(34) & "onclick=" & chr(34) & "window.location.href="& chr(39) & firstresponse & chr(39) & chr(34)  & "STYLE=" & chr(34) & "position: absolute; right: 365 ; top: 156;" & chr(34) & ">"            objFile.Close
     Window_OnLoad
      Msgbox "Bookmark Added Successfully.","0","Job Done"
     end if 
     end if
      end sub
     </script>
       <input type="button" class="button" value="Add Bookmark" name="addlink1" onClick="addlink1"  >
     <span id = "UserArea"></span>
     </BODY>

推荐答案

我进行了一些修改,例如检查文件 windowssettinguser.ini 是否存在;如果不存在,则以附加模式创建它.

I made some modification like to check if the file windowssettinguser.ini exists or not ; if dosen't exist it create it in appending mode.

如果不包含用户键入的网址,则添加协议Http.

Adding Protocol Http if the url typed by the user dosen't included.

<HTML>
<HEAD>
<TITLE>Bookmarks</TITLE>
<HTA:APPLICATION
ID="appbook"
VERSION="1.0"
APPLICATIONNAME="Bookmarks"
SYSMENU="yes"
MAXIMIZEBUTTON="Yes"
MINIMIZEBUTTON="yes"
BORDER="thin"
ICON="magnify.exe"
INNERBORDER="thin"
SCROLL="Yes"
SINGLEINSTANCE="no"
WINDOWSTATE="Maximize"
CONTEXTMENU="NO"
>
<style>
body{
background-color: DarkOrange;
}
</style>
<META HTTP-EQUIV="MSThemeCompatible" CONTENT="YES">
<BODY>
<SCRIPT LANGUAGE="VBScript">

Sub Window_OnLoad
    window.offscreenBuffering = True
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    If objFSO.FileExists("windowssettinguser.ini") Then
        Set objFile = objFSO.OpenTextFile("windowssettinguser.ini",1)
        strContents = objFile.ReadAll
        objFile.Close
        strHTML = UserArea.innerHTML
        strHTML = strContents
        UserArea.innerhtml = strhtml
    else
        Set objFile = objFSO.OpenTextFile("windowssettinguser.ini",8,True)
    End If
end sub

sub addlink1
    Title="Add Web Address Of Your Favourite Web Page"
    firstresponse = inputbox("Please Enter Web Address Of Your Favourite Web Page Or Item !",Title)
    if firstresponse = "" then
        alert "enter something"
    else
        secondresponse = inputbox("Please Enter Name Of Your Desire Which Replace 'Your Link Here' In Main Window.","LinkzMe - Edit Button")
        if secondresponse = "" then
            alert "Enter something"
        else
            Set objFSO = CreateObject("Scripting.FileSystemObject")
            Set objFile = objFSO.OpenTextFile("windowssettinguser.ini",8)
            ProtocoleHTTP = "http://"
            If Left(firstresponse,7) <> ProtocoleHTTP Then
                firstresponse = ProtocoleHTTP & firstresponse
            End if
            objFile.Writeline "<hr><input type=" & chr(34) & "button" & chr(34) & "class=" & chr(34) & "button" & chr(34) & "value=" & chr(34) & secondresponse & chr(34) & "onclick=" & chr(34) & "window.location.href="& chr(39) & firstresponse & chr(39) & chr(34) & "Title="& firstresponse &">"
            objFile.Close
            Msgbox "Bookmark Added Successfully.",Vbinformation,"Job Done"
            window.location.reload(True)
        end if
    end if
end sub
</script>
<input type="button" class="button" value="Add Bookmark" name="addlink1" onClick="addlink1"  >
<span id = "UserArea"></span>
</BODY>
</html>

这篇关于使用Vbscript进行输入校正的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆