Hi maverick786us,
You need to capture the strPost variable in order to be able to access it inside your lambda function. The compiler error message is accurate. From what you are mentioning it sounds like you want to capture it by reference. In general I'd be careful about modifying global variables in your request handlers.
Steve
You need to capture the strPost variable in order to be able to access it inside your lambda function. The compiler error message is accurate. From what you are mentioning it sounds like you want to capture it by reference. In general I'd be careful about modifying global variables in your request handlers.
Steve