我设法在我的 Web 应用程序中添加了一个 iamge 按钮。我正在尝试将此图像按钮“激活”为我的主页按钮。例如,当我单击它时,它会将我定向到主页。
这是我的初始图像按钮代码。
<input type="image" id="myimage" style="height:53px;width:200px;" src="image/logo.jpg" />
这是在我添加通用 html 代码以激活 imagebutton 作为我的主页之后
<input type="image" id="myimage" style="height:53px;width:200px;" src="image/logo.jpg" a href="PoliceHomePage" />
不幸的是,在添加 ahref 后我收到了这个错误。
Validation(HTML5): Attribute 'href' is not a valid attribute of element 'input'.
我研究并尝试了这个,错误仍然存在。
他们像这样向我返回错误
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.
那么什么是正确的代码?
更新
我终于设法得到它
<a href="PoliceHomePage.aspx"><img src="image/logo.jpg" id="myimage" style="height:53px;width:200px;"/></a>