ASPX Login
-
How would I login into a ASPX login form? I haven't found any examples using QNetworkAccessManager. Could someone provide an example or link to a site with examples?
This is my QByteArray which I use to POST. It takes user inputted username and password.
@QByteArray loginData;
loginData.append("username="+(ui->username->text())+"&password="+(ui->pwd->text())+"&action=login");@