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);
} |