hi there i need a source code for imei check from apple direct host : https://selfsolve.apple.com/warrantyChecker.do?sn=IMEI
Imports System.Net
Public Class Form1 'get the value Private WithEvents webclient As New webclient Public Function getresult(ByVal url As String) As String Return New System.Text.UTF8Encoding().GetString(webclient.DownloadData(url)) End Function
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox2.Text = getresult("https://selfsolve.apple.com/warrantyChecker.do?sn=" + TextBox1.Text)
End Sub
End Class
i use this script but when i get data raw from webpage ( in textbox see source code not data example ( IMEI , MODEL , Carrier etc ... ) can u help me to make my own software or php script please.