Advertisement
Advertisement
| 05.07.2008 at 02:55PM PDT, ID: 23384431 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.07.2008 at 04:14PM PDT, ID: 21521176 |
| 05.07.2008 at 05:21PM PDT, ID: 21521437 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: |
WebRequest request = WebRequest.Create("https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi");
// Set the Method property of the request to POST.
request.Method = "POST";
WebProxy proxyObject = new WebProxy(txtProxy.Text.ToString(), true);
if (cbUseProxy.Checked == true)
{
request.Proxy = proxyObject;
}
// Create POST data and convert it to a byte array.
string postData = "login=" + steamAccountName + "&password=" + steamPassword;
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";
// Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length;
// Get the request stream.
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();
// Get the response.
WebResponse response = request.GetResponse();
if (!response)
Thread.Sleep(100000);
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);
|
| 05.07.2008 at 05:21PM PDT, ID: 21521440 |
| 05.07.2008 at 05:36PM PDT, ID: 21521508 |
| 05.07.2008 at 06:02PM PDT, ID: 21521605 |
| 05.07.2008 at 06:03PM PDT, ID: 21521612 |
| 05.07.2008 at 06:16PM PDT, ID: 21521662 |
| 05.07.2008 at 06:25PM PDT, ID: 21521692 |
| 05.08.2008 at 11:53AM PDT, ID: 21527414 |
| 05.08.2008 at 11:53AM PDT, ID: 21527420 |
| 05.08.2008 at 12:05PM PDT, ID: 21527524 |
| 05.08.2008 at 12:26PM PDT, ID: 21527682 |
| 05.08.2008 at 06:18PM PDT, ID: 21529797 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();
// Get the response.
WebResponse response = request.GetResponse();
if (response = null)
Thread.Sleep(100000);
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);
// Read the content.
|
| 05.08.2008 at 06:19PM PDT, ID: 21529802 |