Dynamic datadisplay
-
Hi Friends!!! Well i have requirement here that I need to show the details of the rows of a database as an external window!! To make it clear i have a datagrid ,on click of a button row in the grid the relevant information will pop out in another datagrid as a separate window... how to do it? Any suggestions??? Thanks!!!
I was born dumb!! :laugh:Programming made me laugh:laugh:!!! --sid--
-
Hi Friends!!! Well i have requirement here that I need to show the details of the rows of a database as an external window!! To make it clear i have a datagrid ,on click of a button row in the grid the relevant information will pop out in another datagrid as a separate window... how to do it? Any suggestions??? Thanks!!!
I was born dumb!! :laugh:Programming made me laugh:laugh:!!! --sid--
Hey This is not a great answer but I hope it will point you in the right direction: You can use a master detail view to perform filtering so you click a row in your master view and it redirects you to a page with your details (row view) - look at the tutorials on www.asp.net: http://www.asp.net/learn/dataaccess/tutorial09cs.aspx?tabid=63 So instead of going to a new page can you not use JavaScript to make a new window with a URL to your details page and a quer string telling it what to show: http://www.pageresource.com/jscript/jwinopen.htm Hope this helps Dan