How to send data via POST to a jQuery dialog within iframe.
Hello friends, I wonder if it is possible to pass data via POST to a jQuery dialog that contains an iframe and a aspx page.
Our client is a bank and now I pass the data via GET but for security reasons we need to change.
I appreciate the help.
This is my scenario:
function ShowDialogFund(portfolioId, operationType, marketType, tradeDate) {
var url = "fund-list.aspx?portfolioId=" + portfolioId + "&operationType=" + operationType + "&marketType=" + marketType + "&tradeDate=" + tradeDate;
var frame = $("<iframe id='list_frame'>").attr({ "src": url, "width": "100%", "height": "100%", "frameborder": "0" });
$("#dialog-fund-list").empty().append(frame);
$("#dialog-fund-list").dialog("open");
return false;
}