2017-03-02 45 views
0

我在famenroll1.aspx頁面中有一個url。頁面的代碼如下:asp.net的內容在頁面中不可見

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="famenroll1.aspx.cs" Inherits="famenroll1" %> 

<!DOCTYPE html> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
    <META http-equiv=Content-Language content=en-us> 
<META http-equiv=Content-Type content="text/html; charset=windows-1252"> 
<meta http-equiv="x-ua-compatible" content="IE=10"> 
<style> 
#Enroll1_url{ 
    padding: 1px !important; 
    text-decoration:none !important;   
    background-color: #0B70BE; 
    background-image: -moz-linear-gradient(center center , rgb(11, 112, 190) 0%, rgb(11, 112, 190) 100%) !important; 
    border-radius: 2px !important; 
    border: 2px solid rgb(43, 125, 185) !important; 
    font-weight: bold; 
    font-size: 13px !important; 
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif; 
    height: 28px !important; 
    text-shadow: none !important; 
    color: rgb(255, 255, 255) !important; 
} 
</style> 
<script type="text/javascript"> 
     if (document.layers) { 
      //Capture the MouseDown event. 
      document.captureEvents(Event.MOUSEDOWN); 

      //Disable the OnMouseDown event handler. 
      document.onmousedown = function() { 
       return false; 
      }; 
     } 
     else { 
      //Disable the OnMouseUp event handler. 
      document.onmouseup = function (e) { 
       if (e != null && e.type == "mouseup") { 
        //Check the Mouse Button which is clicked. 
        if (e.which == 2 || e.which == 3) { 
         //If the Button is middle or right then disable. 
         return false; 
        } 
       } 
      }; 
     } 

     //Disable the Context Menu event. 
     document.oncontextmenu = function() { 
      return false; 
     }; 
    </script> 
    <Script Language="VBScript" Src="GetLearn.vbs"> 
</head> 
<body> 
    <asp:HyperLink ID="Enroll1_url" NavigateUrl="#" Text="Please Try Again" runat="server" /> 

    <p style="position:absolute !important; top:5px !important; left:4px !important;"> 

</body> 
</html> 

相應famenroll1.aspx.cs頁如下:

public partial class famenroll1 : System.Web.UI.Page 
{ 
    string name, app_user, ai_logid, finger, cust_type; 

    protected void Page_Load(object sender, EventArgs e) 
    { 
     name = Request.QueryString["name"]; 
     app_user = Request.QueryString["app_user"]; 
     ai_logid = Request.QueryString["ai_logid"]; 
     finger = Request.QueryString["finger"]; 
     cust_type = Request.QueryString["cust_type"]; 

     changeUrl(); 
    } 

    void changeUrl() 
    { 
     Enroll1_url.NavigateUrl = "famenroll1.asp?name="+name+"&app_user="+app_user+"&ai_logid="+ai_logid+"&check=&finger=1&cust_type="+cust_type; 
    } 

} 

但asp.net網頁的內容沒有顯示。當我運行它時,famenroll1.aspx中沒有超鏈接。可能是什麼原因?請幫幫我 。

+0

當您在瀏覽器中查看頁面的源代碼時,它看起來像什麼?你說鏈接沒有顯示 - 這將有助於知道它是否實際不存在,或只是不可見。 – SouthShoreAK

回答

1

您正在從.aspx文件調用.vbs文件。我認爲這不是從.aspx文件調用.vbs腳本的確切方式。

相關問題