我一直在尝试使用 jQuery 和许多其他方法。
首先,我调用一个函数:
ClientSideEvents RowClick="function(s, e) { OnGridFocusedRowChanged(); }"
这使我进入了我用来重定向到另一个 ASPX 的例程。
(我喜欢在后面使用代码,但在使用 jQuery 和 ASP.net Gridview 之前我已经做过类似的事情。)
function OnGridFocusedRowChanged() {
cell = document.getElementById('<%=ASPxGridView1.ClientID%>')
alert(cell); ????
ViewName = aspxcboDashboard_IN.GetText();
window.location.href = "Drills.aspx?ViewName=" + ViewName + "&ViewRow=test" + "&ViewCol=test";
}