vb net te yaptığım programı herkesin açmasını istemiyorum sadece belirli hwid ler açabilsin? Nasıl yaparım yani bu programa http://sitem.phpnet.us/HWIDS.txt de kayıtlı kullanıcılar açabilsin sadece.
)
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Private Shared Function BilgiCek(ByVal url As String) As String
Dim istek As WebRequest = HttpWebRequest.Create(url)
Dim cevap As WebResponse = istek.GetResponse()
Dim donenBilgiler As StreamReader = New StreamReader(cevap.GetResponseStream())
Return donenBilgiler.ReadToEnd()
End Function