-3
我想是這樣的:CS1026:)預計我想我的asp.net頁面上應用循環,但我得到一個錯誤
Line 42: <%=
Line 43:
Line 44: For t = 1 to 50
Line 45: "<p>This text is repeated 50 times</p>"
Line 46:
我想是這樣的:CS1026:)預計我想我的asp.net頁面上應用循環,但我得到一個錯誤
Line 42: <%=
Line 43:
Line 44: For t = 1 to 50
Line 45: "<p>This text is repeated 50 times</p>"
Line 46:
試試這個:
<%
For t = 1 to 50
%>
<p>This text is repeated 50 times</p>
<%
Next
%>
你「asdfasdf」是一個表達式,而不是一個聲明,因此它什麼也不做。 Which is what CS1026 means.
而且,在VB.Net循環需要一個「下一步」
請到通過鏈接http://stackoverflow.com/help/how-to-ask – Balaji
要發佈的代碼,我們喜歡它,而不行號,請使用提供的代碼格式工具,並且您可能需要發佈更大的代碼塊來幫助您。 – halfer
另外,即使你這樣做,我們也不知道'CS1026'是什麼,所以請清楚說明。如果是在線課程,請將鏈接添加到您的帖子中。 – halfer