Stortex 40 Hello i want to make an Account generator for that i need to get data from a webstie to insert into the other one. So i use an Webbrowser where i want to parse from but i dont know how.... Website (https://www.fakenamegenerator.com/advanced.php) And i want to get things like phone number name and so on as an string. Also it would be nice if someone can tell me how to set the range slider to a certain number and so on. Thank you :fiesta: Quote Share this post Link to post Share on other sites
Plоt 7 Instead of using a web browser, you can use a WebClient, e.g: Note: it will download the source of the website string data = new WebClient().DownloadString("https://www.fakenamegenerator.com/advanced.php").ToString(); // After, you can use Regex to get the data you want Quote Share this post Link to post Share on other sites