English 中文(简体)
预想的问题
原标题:asp problem, expected (

I get this error when viewing the page in Internet explorer Webpage error details

 Message: Expected  (  
    Line: 152
    Char: 4 
    Code: 0

    <script>/* <![CDATA[ */qmad.mwidths=new Object();if(qmad.bvis.indexOf("qm_mwidths_a(b.cdiv,o);")==-1)qmad.bvis+="qm_mwidths_a(b.cdiv,o);";;function qm_mwidths_a(sub,item){var z;if((z=window.qmv)&&(z=z.addons)&&(z=z.match_widths)&&!z["on"+qm_index(sub)])return;var ss;if(!item.settingsid){var v=item;while((v=v.parentNode)){if(v.className.indexOf("qmmc")+1){item.settingsid=v.id;break;}}}ss=qmad[item.settingsid];if(!ss)return;if(!ss.mwidths_active)return;if(qm_a(item.parentNode)){var t=0;t+=qm_getcomputedstyle(sub,"padding-left","paddingLeft");t+=qm_getcomputedstyle(sub,"padding-right","paddingRight");t+=qm_getcomputedstyle(sub,"border-left-width","borderLeftWidth");t+=qm_getcomputedstyle(sub,"border-right-width","borderRightWidth");var adj=0;adj=item.getAttribute("matchwidthadjust");if(adj)adj=parseInt(adj);if(!adj||isNaN(adj))adj=0;sub.style.width=(item.offsetWidth-t+adj)+"px";var a=sub.childNodes;for(var i=0;i<a.length;i++){if(a[i].tagName=="A")a[i].style.whiteSpace="normal";}}};function qm_getcomputedstyle(obj,sname,jname){var v;if(document.defaultView&&document.defaultView.getComputedStyle)v=document.defaultView.getComputedStyle(obj,null).getPropertyValue(sname);else  if(obj.currentStyle)v=obj.currentStyle[jname];if(v&&!isNaN(v=parseInt(v)))return v;else return 0;}/* ]]> */</script>


    148:    <%
    149:    UserIPAddress = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
    150:    If UserIPAddress = "" Then 
    151:    UserIPAddress = Request.ServerVariables("REMOTE_ADDR")
    152:    end if
    153:    
    154:    
    155: IF Left(UserIPAddress,11) = "192.168.130" or Left(UserIPAddress,10) = "236.234.11"  then
    156:    %>  
    157:      
    158:    <%  
    159:    IF ucase(request.querystring("go"))="" then  
    160:        go="HOME"  
    161:    ELSE  
    162:        go = ucase(request.querystring("go"))
    163:    END IF
    164:    
    165:    IF ucase(request.querystring("rdate"))="" then
    166:        rdate = FormatDateTime(now(), 2)
    167:    ELSE
    168:        rdate = ucase(request.querystring("rdate"))
    169:    END IF
    170;    
    171:    If not(IsDate(rdate)) Then
    172:        rdate = FormatDateTime(now(), 2)
    173:    End If
    174:    %>

这是源代码/运行时间

150:    <script> 
151:  <!--
152:  if request.querystring("rdate")<>"" then
153:   rdate=request.querystring("rdate")
154:  else
155:   rdate= now()
156:   end if
157:   
158:  function querySt(ji) {
159:  hu = window.location.search.substring(1);
160:  gy = hu.split("&");
161:  for (i=0;i<gy.length;i++) {
162:  ft = gy[i].split("=");
163:  if (ft[0] == ji) {
164:   return ft[1];
165: }
166: }
167: }
168: var rundate = querySt("rdate");
169: 
170: if request.querystring("rdate")<>"" then
171:   rundate=request.querystring("rdate")
172: else
173:   rdate= now()
174:   end if
175:   
176: document.write(rdate);
177: document.write("<br>");
178: -->
179: </script>
最佳回答

@NEW programr: 你似乎将伙伴关系与Javad(在第二部法典中,Ln 150-179)。 您的if request.querystring/2005/4 in that Code should be in ASP delimiters, <%>, which will take care of that specific syntax wrong sent.

似乎即使你不需要整个第二组,尽管它不像你一样再次使用,而且“条码”<<>条码><>>条码>已经检查并在协会中确定。

问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签