私はブートストラップとHTMLでVisual Studio 2015を使用してウェブサイトを作成しようとしていますが、これまでのコードは実行されず、エラーメッセージが表示されます。基本Webサイトでエラーが発生するCS1002:;予想される
]
Iv'eもこのサイトの指示に従って:ここではHTMLGoodies.com
は、私が持っているコードは、これまでのところです:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Time Entry</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="bootstrap.min.css" />
<script src="bootstrap.min.js"></script>
<link rel="stylesheet" href="bootstrap-theme.min.css" />
</head>
<body>
<form id="form1" runat="server">
<div class="container-fluid">
<h1>Logo Book</h1>
<p>Discover Artists and Shape Your Perfect Logo</p>
</div>
<div class="row">
<div class="col-md-4" style="background-color:blue;">
Welcome to Logo Book where you can browse through potyfolios of your prefered artist and see what they have to offer.
</div>
<div class="col-md-4" style="background-color:palegoldenrod;">
Looking for an easier way to get in touch with these artists and give specific details needed for your project?
</div>
<div class="col-md-4" style="background-color:coral;">
Feel free to use our Q&A section to voice and submit your needs such as fonts and images!
</div>
</div>
</form>
</body>
</html>
これは、識別子(特に名前空間)を数字で始めることができないためです(WebSite1.2では2)。[この質問](http://stackoverflow.com/questions/4949731/numbers-in-コンパイルエラーの誤解を招く可能性があります。 – Zong
あなたは正しいZongだった。私は単純な名前のウェブサイト1を使って新しいウェブサイトプロジェクトを開始したが、現在は正常に動作している。あなたの洞察をありがとう! –