我试图使用"以及#34;,但我无法得到它。我猜测问题是在链接部分,即使我无法使用CSS的任何其他功能,我一个初学者,无法通过这个。提前感谢任何帮助过这个的人。
object.Name = p.Parameters["@Name"].Value;
答案 0 :(得分:0)
您错过了结束"
<meta name = "viewport" content = "width = device-width , initial-scale = 1">
<link rel = "stylesheet" type = "text/css" href = "css/bootstrap.min.css">
答案 1 :(得分:0)
If you are beginner and feeling linking problem of css and js file, just include the cdn files of bootstrap in your html file and write your code. I have included the cdn file in below code, look into this.
<!DOCTYPE html>``
<html>
<head>
<title>Jothidhal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class = "container">
<div class = "row">
<div class = "col-md-12 well" >col-12</div>//Am trying to use "well", but i couldn't get it.i guess the probelm is in linking part, even i couldn't use any other features of CSS, am a beginner and couldn't get through this. Thanks in advance to anyone who helps in with this..
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>