cshtml
<bgsound src = ‘‘/>
Controller
public ActionResult Index (int id?)
{
...
}
如果访问这个页面的话,会连续访问两次,由于scr =‘‘ 造成,把scr=‘‘ 去掉就可以了
cshtml
<bgsound/>
时间: 2024-10-10 13:25:42
cshtml
<bgsound src = ‘‘/>
Controller
public ActionResult Index (int id?)
{
...
}
如果访问这个页面的话,会连续访问两次,由于scr =‘‘ 造成,把scr=‘‘ 去掉就可以了
cshtml
<bgsound/>