or
How to I setup my filter to select the value I pass it from a webpage?
| <button onclick="openWin('<%# Eval("pws_id") %>'); return false;">Open Print Window</button>
function openWin(PWSID) {
radopen( "print.aspx?pws_id=" + PWSID);
} |
public class DepositWidgetDto { public DepositWidgetDto() { Accounts = new List<string>(); } public Guid Id { get; set; } public string Number { get; set; } public List<string> SealsCodes { get; set; } public int NonRecognized { get; set; } public List<CashDto> Cash { get; set; } public List<EnvelopeDto> Envelopes { get; set; } public List<UnVerifiedDto> UnVerified { get; set; } public List<string> Accounts { get; set; } }