Click here to Skip to main content
15,896,513 members
Home / Discussions / C#
   

C#

 
AnswerRe: string replace Pin
jschell16-Jul-18 15:49
jschell16-Jul-18 15:49 
GeneralRe: string replace Pin
Ali Doran16-Jul-18 17:09
Ali Doran16-Jul-18 17:09 
GeneralRe: string replace Pin
OriginalGriff16-Jul-18 19:36
mveOriginalGriff16-Jul-18 19:36 
GeneralRe: string replace Pin
Ali Doran16-Jul-18 22:38
Ali Doran16-Jul-18 22:38 
GeneralRe: string replace Pin
OriginalGriff16-Jul-18 23:07
mveOriginalGriff16-Jul-18 23:07 
GeneralRe: string replace Pin
Ali Doran16-Jul-18 23:34
Ali Doran16-Jul-18 23:34 
GeneralRe: string replace Pin
OriginalGriff16-Jul-18 23:39
mveOriginalGriff16-Jul-18 23:39 
GeneralRe: string replace Pin
Ali Doran17-Jul-18 5:03
Ali Doran17-Jul-18 5:03 
GeneralRe: string replace Pin
OriginalGriff17-Jul-18 5:10
mveOriginalGriff17-Jul-18 5:10 
QuestionMVC Website is working slow Pin
galba201815-Jul-18 21:12
galba201815-Jul-18 21:12 
AnswerRe: MVC Website is working slow Pin
Jochen Arndt15-Jul-18 23:56
professionalJochen Arndt15-Jul-18 23:56 
QuestionZoom Image in the PictureBox where user make selection Pin
Member 1384510215-Jul-18 4:26
Member 1384510215-Jul-18 4:26 
AnswerRe: Zoom Image in the PictureBox where user make selection Pin
Gerry Schmitz16-Jul-18 10:03
mveGerry Schmitz16-Jul-18 10:03 
QuestionCompiler Inside The Program got errors - Gmail Pin
Member 1385811014-Jul-18 7:58
Member 1385811014-Jul-18 7:58 
AnswerRe: Compiler Inside The Program got errors - Gmail Pin
OriginalGriff14-Jul-18 18:43
mveOriginalGriff14-Jul-18 18:43 
AnswerRe: Compiler Inside The Program got errors - Gmail Pin
Eddy Vluggen14-Jul-18 22:51
professionalEddy Vluggen14-Jul-18 22:51 
GeneralRe: Compiler Inside The Program got errors - Gmail Pin
Member 1385811015-Jul-18 1:11
Member 1385811015-Jul-18 1:11 
GeneralRe: Compiler Inside The Program got errors - Gmail Pin
Richard MacCutchan15-Jul-18 2:01
mveRichard MacCutchan15-Jul-18 2:01 
GeneralRe: Compiler Inside The Program got errors - Gmail Pin
Eddy Vluggen15-Jul-18 2:04
professionalEddy Vluggen15-Jul-18 2:04 
GeneralRe: Compiler Inside The Program got errors - Gmail Pin
Member 1385811015-Jul-18 2:58
Member 1385811015-Jul-18 2:58 
AnswerRe: Compiler Inside The Program got errors - Gmail Pin
Dave Kreskowiak16-Jul-18 4:29
mveDave Kreskowiak16-Jul-18 4:29 
QuestionStrings were not posted properly? Pin
codeNewer12-Jul-18 17:24
codeNewer12-Jul-18 17:24 
AnswerRe: Strings were not posted properly? Pin
Richard Deeming13-Jul-18 1:16
mveRichard Deeming13-Jul-18 1:16 
codeNewer wrote:
$val = $_GET["data"];
codeNewer wrote:
req.Method = "POST";

You need to understand the difference between GET and POST requests:
HTTP Methods GET vs POST[^]

Your PHP code is reading the variable from the querystring. Your C# code is sending the variable in the request body.

You either need to modify your PHP code to check the $_POST as well as the $_GET; or modify your C# code to make a GET request.

You also need to modify your C# code to actually send the request.
C#
private void SendData()
{
    string text = TextBox.Text;
    string url = "http://abc.com/writefile.php?data=" + Uri.EscapeDataString(text);
    HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
    req.Method = "GET";

    using (var response = req.GetResponse())
    {
        // Discard the response
    }
}




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

QuestionHow to select nodes via HtmlAgilityPack? Pin
MohammadRSZ12-Jul-18 12:54
MohammadRSZ12-Jul-18 12:54 
AnswerRe: How to select nodes via HtmlAgilityPack? Pin
Keviniano Gayo13-Jul-18 3:19
Keviniano Gayo13-Jul-18 3:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.