LinkButton
Asp.net で yahoo メッセンジャーをクリックしてメッセージを送信したいと考えています。動作する場合もあれば、このエラーが発生する場合Windows can not access the spesified device, path or file. You may not have appropriate permission to access this item
もあります。また、 Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 400
これは VB の私のコードです。何が問題なのですか?
Protected Sub LinkButton2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkButton2.Click
Dim idname As String = "YMID"
Dim message As String = "Hello, This is my YM message"
Dim sendim As String = String.Format("ymsgr:SendIM?{0}&m={1}", idname, message)
LinkButton2.PostBackUrl = (sendim)
End Sub