0

I know that $_POST['m_orderid'] in C# the equivalent will be Request.Form["m_orderid"]. What means in C#:

$_POST['m_orderid'].'|success'; 
ekad
  • 14,436
  • 26
  • 44
  • 46

1 Answers1

2

Looks like you want to concatenate Request.Form["m_orderid"] with this string: |success, so the equivalent syntax in C# would be:

Request.Form["m_orderid"] + "|success";
ekad
  • 14,436
  • 26
  • 44
  • 46