﻿function ShowHelloWord(vrName) {
    var vrText = document.getElementById(vrName).value;
    if (vrText == '') {
        alert('请输入姓名！');
        document.getElementById(vrName).Fouse();
        return;
    }
    alert(AjaxTest.GetHelloWord(vrText).value);
}
