How to Store an Asynchronous Response in a ASP.NET User Control TextBox?












0















I have a DNN 9 custom module that I'm customizing with a new payment gateway. I need to store results from asynchronous API calls in a TextBox that's part of a User Control (.ascx) and write the value to the database.



My asynchronous request is as follows:



private static async Task<string> HostedTransactionResponse()
{
var credentials = GetCredentials();
TransactionResult_ProPay result = new TransactionResult_ProPay();
HttpClient client = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage();
HttpResponseMessage response = new HttpResponseMessage();
GatewaySetting_ProPay gatewaySetting = new GatewaySetting_ProPay();
CreateHostedTransactionRequest transactionRequest = new CreateHostedTransactionRequest();
CreateHostedTransactionResponse transactionResponse = new CreateHostedTransactionResponse();
HttpContent content = new StringContent(transactionRequest.ToString());
try
{
request.Headers.Add("Authorizatoin", credentials);
response = await client.PutAsync(gatewaySetting.TestUrl, content);
}
catch (HttpException ex)
{
result.Succeeded = false;
result.ResultMessage = ex.Message;
}

return response.Content.ToString();
}


Part of my user control code behind consists of:



objItem.R_ProPay_Enable = chkR_ProPay_Enable.Checked;
objItem.R_ProPay_Id = txtR_ProPay_Id.Text;

UserController.Update(objItem);


When I click the Update button on the user interface, my intent is that a Payer ID is obtained and returned to the site, written to the appropriate database field and also valued in the txtR.ProPay_Id.Text property.



Unfortunately that is not happening. How do I remedy this?










share|improve this question























  • Where are you calling your async request? Most likely the page has been rendered and send back to the client before your async request has been completed.

    – Jon P
    Nov 20 '18 at 1:36
















0















I have a DNN 9 custom module that I'm customizing with a new payment gateway. I need to store results from asynchronous API calls in a TextBox that's part of a User Control (.ascx) and write the value to the database.



My asynchronous request is as follows:



private static async Task<string> HostedTransactionResponse()
{
var credentials = GetCredentials();
TransactionResult_ProPay result = new TransactionResult_ProPay();
HttpClient client = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage();
HttpResponseMessage response = new HttpResponseMessage();
GatewaySetting_ProPay gatewaySetting = new GatewaySetting_ProPay();
CreateHostedTransactionRequest transactionRequest = new CreateHostedTransactionRequest();
CreateHostedTransactionResponse transactionResponse = new CreateHostedTransactionResponse();
HttpContent content = new StringContent(transactionRequest.ToString());
try
{
request.Headers.Add("Authorizatoin", credentials);
response = await client.PutAsync(gatewaySetting.TestUrl, content);
}
catch (HttpException ex)
{
result.Succeeded = false;
result.ResultMessage = ex.Message;
}

return response.Content.ToString();
}


Part of my user control code behind consists of:



objItem.R_ProPay_Enable = chkR_ProPay_Enable.Checked;
objItem.R_ProPay_Id = txtR_ProPay_Id.Text;

UserController.Update(objItem);


When I click the Update button on the user interface, my intent is that a Payer ID is obtained and returned to the site, written to the appropriate database field and also valued in the txtR.ProPay_Id.Text property.



Unfortunately that is not happening. How do I remedy this?










share|improve this question























  • Where are you calling your async request? Most likely the page has been rendered and send back to the client before your async request has been completed.

    – Jon P
    Nov 20 '18 at 1:36














0












0








0








I have a DNN 9 custom module that I'm customizing with a new payment gateway. I need to store results from asynchronous API calls in a TextBox that's part of a User Control (.ascx) and write the value to the database.



My asynchronous request is as follows:



private static async Task<string> HostedTransactionResponse()
{
var credentials = GetCredentials();
TransactionResult_ProPay result = new TransactionResult_ProPay();
HttpClient client = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage();
HttpResponseMessage response = new HttpResponseMessage();
GatewaySetting_ProPay gatewaySetting = new GatewaySetting_ProPay();
CreateHostedTransactionRequest transactionRequest = new CreateHostedTransactionRequest();
CreateHostedTransactionResponse transactionResponse = new CreateHostedTransactionResponse();
HttpContent content = new StringContent(transactionRequest.ToString());
try
{
request.Headers.Add("Authorizatoin", credentials);
response = await client.PutAsync(gatewaySetting.TestUrl, content);
}
catch (HttpException ex)
{
result.Succeeded = false;
result.ResultMessage = ex.Message;
}

return response.Content.ToString();
}


Part of my user control code behind consists of:



objItem.R_ProPay_Enable = chkR_ProPay_Enable.Checked;
objItem.R_ProPay_Id = txtR_ProPay_Id.Text;

UserController.Update(objItem);


When I click the Update button on the user interface, my intent is that a Payer ID is obtained and returned to the site, written to the appropriate database field and also valued in the txtR.ProPay_Id.Text property.



Unfortunately that is not happening. How do I remedy this?










share|improve this question














I have a DNN 9 custom module that I'm customizing with a new payment gateway. I need to store results from asynchronous API calls in a TextBox that's part of a User Control (.ascx) and write the value to the database.



My asynchronous request is as follows:



private static async Task<string> HostedTransactionResponse()
{
var credentials = GetCredentials();
TransactionResult_ProPay result = new TransactionResult_ProPay();
HttpClient client = new HttpClient();
HttpRequestMessage request = new HttpRequestMessage();
HttpResponseMessage response = new HttpResponseMessage();
GatewaySetting_ProPay gatewaySetting = new GatewaySetting_ProPay();
CreateHostedTransactionRequest transactionRequest = new CreateHostedTransactionRequest();
CreateHostedTransactionResponse transactionResponse = new CreateHostedTransactionResponse();
HttpContent content = new StringContent(transactionRequest.ToString());
try
{
request.Headers.Add("Authorizatoin", credentials);
response = await client.PutAsync(gatewaySetting.TestUrl, content);
}
catch (HttpException ex)
{
result.Succeeded = false;
result.ResultMessage = ex.Message;
}

return response.Content.ToString();
}


Part of my user control code behind consists of:



objItem.R_ProPay_Enable = chkR_ProPay_Enable.Checked;
objItem.R_ProPay_Id = txtR_ProPay_Id.Text;

UserController.Update(objItem);


When I click the Update button on the user interface, my intent is that a Payer ID is obtained and returned to the site, written to the appropriate database field and also valued in the txtR.ProPay_Id.Text property.



Unfortunately that is not happening. How do I remedy this?







c# asp.net asynchronous






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 1:27









SidCSidC

1,6661155112




1,6661155112













  • Where are you calling your async request? Most likely the page has been rendered and send back to the client before your async request has been completed.

    – Jon P
    Nov 20 '18 at 1:36



















  • Where are you calling your async request? Most likely the page has been rendered and send back to the client before your async request has been completed.

    – Jon P
    Nov 20 '18 at 1:36

















Where are you calling your async request? Most likely the page has been rendered and send back to the client before your async request has been completed.

– Jon P
Nov 20 '18 at 1:36





Where are you calling your async request? Most likely the page has been rendered and send back to the client before your async request has been completed.

– Jon P
Nov 20 '18 at 1:36












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384961%2fhow-to-store-an-asynchronous-response-in-a-asp-net-user-control-textbox%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384961%2fhow-to-store-an-asynchronous-response-in-a-asp-net-user-control-textbox%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini