I'm simply trying to send data to a database as proof of concept. I currently have an ASP page that will send data there for me. I have an extremely basic Android app set to post the information to the database, but none of the data is posting there. I'm not getting any errors or force closes and the url is the proper url and format to send to the database with that particular ASP file.Here is my code\[code\]HttpClient client = new DefaultHttpClient(); //set url String url = "**removed for security reasons**"; url += "var1=" + editVar1.getText().toString() + "&var2=" + editVar2.getText().toString() + "&var3=" + editVar3.getText().toString(); //display url in toast Toast toast = Toast.makeText(getApplicationContext(), url, Toast.LENGTH_LONG); toast.show(); //prepare connection HttpGet request = new HttpGet(url); //send HttpGet try { client.execute(request); } catch (Exception e){}\[/code\]