0

どうにかして iamge ボタンを Web アプリケーションに追加することができました。この画像ボタンをホームページのボタンとして「アクティブ化」しようとしています。たとえば、クリックするとホームページに移動します。

これは私の最初の画像ボタンのコードです。

<input type="image" id="myimage" style="height:53px;width:200px;" src="image/logo.jpg"  />

これは、イメージボタンをホームページとしてアクティブにするための一般的な html コードを追加した後です。

<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>
4

5 に答える 5

1
<a href="PoliceHomePage"><input type="image" id="myimage" style="height:53px;width:200px;" src="image/logo.jpg" /></a>

A は別のタグで、href は A のパラメーターです。

于 2013-05-28T06:55:21.190 に答える