ボタンの newguid として ID を作成し、それを jquery スクリプトで使用するにはどうすればよいですか? 何かのようなもの:
@{ var id = Guid.NewGuid().ToString(); } //
<input type=button id="@id" name="Go" /> @*how can i use this newguid as an id for my button?*@
<script>
@*how can i use this id to attach an eventhandler to for my button?*@
$("@id ).click(function(){
});
</script>