how to: load data in gridview whitout DataSource
am 21.01.2008 13:00:23 von luukas9
Hello,
First, sorry for my English...
I'm triying to load data from store procedure into a gridview.
The most simply is doing 'myGrid.DataSource =3D myDataTable', but this
'myDataTable' returns a numeric value that I need to transform (this
numeric value is an ID, and i need the description of this ID, that
is
store in another table in my DB)
My Gridview has 3 BoundsFields and one TemplateField for this
'problematic' column, whit a Label:
..
I need a idea, because I'm looking for it in google and msdn but no
'good results'... (for example:
I'm looking for something in the server part)
Thanks.
Now In Spanish:
Hola,
Estoy intentando cargar los datos de un procedimiento almacenado en
un
gridview. Obviamente lo m=E1s sencillo es hacer un 'gridview.DataSource
=3D myDataTable' y que lo haga autom=E1ticamente. El problema es que la
consulta ejecutada, me devuelve un campo ID que tendria que
transformar en su descripcion para poder mostrar eso al usuario.
Como se detalla arriba, uso un gridview con BoundsFields para los
campos que no necesito tocar, y un TemplateField para este campo, ya
que no busco asignarlo directamente de la BD.
Necesito alguna idea porque todo lo que he buscado por google y msdn
no indica nada parecido para resolverlo. (por ejemplo:
Text=3D<%Eval("myID")%> estoy buscando algo que se ejecute en la parte
de sevidor no en el aspx sino en el codigo aparte.)
Gracias.
Re: how to: load data in gridview whitout DataSource
am 21.01.2008 13:34:25 von Eliyahu Goldin
The best thing would be to make a single table that joins your result set
with another table. Can you modify the stored procedure to join with another
table? If no, can you avoid using the stored procedure and to make a view or
a query with the join?
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"luukas9" wrote in message
news:3209c3b2-005e-46e6-893b-0bd48520e6ee@21g2000hsj.googleg roups.com...
Hello,
First, sorry for my English...
I'm triying to load data from store procedure into a gridview.
The most simply is doing 'myGrid.DataSource = myDataTable', but this
'myDataTable' returns a numeric value that I need to transform (this
numeric value is an ID, and i need the description of this ID, that
is
store in another table in my DB)
My Gridview has 3 BoundsFields and one TemplateField for this
'problematic' column, whit a Label:
....
I need a idea, because I'm looking for it in google and msdn but no
'good results'... (for example:
I'm looking for something in the server part)
Thanks.
Now In Spanish:
Hola,
Estoy intentando cargar los datos de un procedimiento almacenado en
un
gridview. Obviamente lo más sencillo es hacer un 'gridview.DataSource
= myDataTable' y que lo haga automáticamente. El problema es que la
consulta ejecutada, me devuelve un campo ID que tendria que
transformar en su descripcion para poder mostrar eso al usuario.
Como se detalla arriba, uso un gridview con BoundsFields para los
campos que no necesito tocar, y un TemplateField para este campo, ya
que no busco asignarlo directamente de la BD.
Necesito alguna idea porque todo lo que he buscado por google y msdn
no indica nada parecido para resolverlo. (por ejemplo:
Text=<%Eval("myID")%> estoy buscando algo que se ejecute en la parte
de sevidor no en el aspx sino en el codigo aparte.)
Gracias.
Re: how to: load data in gridview whitout DataSource
am 21.01.2008 15:55:00 von luukas9
Hi,
Thanks for your response. I publish the same thread in:
http://groups.google.es/group/microsoft.public.dotnet.langua ges.csharp/browse_thread/thread/0d992f51d9e7375b/43c99f3176a 46fed?hl=es#43c99f3176a46fed
There are more details here. Sorry.
Thanks.