473,490 Members | 2,592 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

GridView and hidden field

i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Jul 11 '07 #1
8 18790
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...

"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)

i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...

well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 12 '07 #2
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg

"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg

Hi...

"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)

i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...

well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 12 '07 #3
On Jul 12, 3:04 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg

"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...
"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)
i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...
well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
Hi...
protected void GridViewTasks_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("myCustomAttribute", true);
}
}

this is the code for adding attribute to a row in rowdatabound
i think i am kind of missing the point... what exactly you are trying
to accomplish?
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 12 '07 #4
ow now that i think i am not sure this is a good solutuin
beacuse i wanted from start to put a hidden value beacuwe i got it from the db
and the when the RowDataBound evernt occurs
by the hidden value i put in each row i want to change the row color
so what the correct way to do it?
thnaks
peleg

"Masudur" wrote:
On Jul 12, 3:04 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg

"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...
"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)
i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...
well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
>www.kaz.com.bd
>http://munnacs.110mb.com

Hi...
protected void GridViewTasks_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("myCustomAttribute", true);
}
}

this is the code for adding attribute to a row in rowdatabound
i think i am kind of missing the point... what exactly you are trying
to accomplish?
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 12 '07 #5
On Jul 12, 8:46 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
ow now that i think i am not sure this is a good solutuin
beacuse i wanted from start to put a hidden value beacuwe i got it from the db
and the when the RowDataBound evernt occurs
by the hidden value i put in each row i want to change the row color
so what the correct way to do it?
thnaks
peleg

"Masudur" wrote:
On Jul 12, 3:04 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg
"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...
"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)
i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...
well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
Hi...
protected void GridViewTasks_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("myCustomAttribute", true);
}
}
this is the code for adding attribute to a row in rowdatabound
i think i am kind of missing the point... what exactly you are trying
to accomplish?
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
Well...

hi... i got it...
since you what it from beginning ... it kind of difficult........
because after itemdatabound things will be there.... but still you
have the option...
since you are binding the grid view against some data source...the
item you want to embade is already in your dataitem... right?
so why don't you just use e.Row.DataItem and cust it to appropriate
type... and then check value....

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 14 '07 #6
to use e.Row.DataItem the data will appar on screnn and i want to avoid it

"Masudur" wrote:
On Jul 12, 8:46 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
ow now that i think i am not sure this is a good solutuin
beacuse i wanted from start to put a hidden value beacuwe i got it from the db
and the when the RowDataBound evernt occurs
by the hidden value i put in each row i want to change the row color
so what the correct way to do it?
thnaks
peleg

"Masudur" wrote:
On Jul 12, 3:04 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg
"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...
"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)
i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...
well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
>www.kaz.com.bd
>http://munnacs.110mb.com
Hi...
protected void GridViewTasks_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("myCustomAttribute", true);
}
}
this is the code for adding attribute to a row in rowdatabound
i think i am kind of missing the point... what exactly you are trying
to accomplish?
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
>www.kaz.com.bd
>http://munnacs.110mb.com

Well...

hi... i got it...
since you what it from beginning ... it kind of difficult........
because after itemdatabound things will be there.... but still you
have the option...
since you are binding the grid view against some data source...the
item you want to embade is already in your dataitem... right?
so why don't you just use e.Row.DataItem and cust it to appropriate
type... and then check value....

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 14 '07 #7
On Jul 14, 4:08 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
to use e.Row.DataItem the data will appar on screnn and i want to avoid it

"Masudur" wrote:
On Jul 12, 8:46 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
ow now that i think i am not sure this is a good solutuin
beacuse i wanted from start to put a hidden value beacuwe i got it from the db
and the when the RowDataBound evernt occurs
by the hidden value i put in each row i want to change the row color
so what the correct way to do it?
thnaks
peleg
"Masudur" wrote:
On Jul 12, 3:04 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg
"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...
"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)
i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...
well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
Hi...
protected void GridViewTasks_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("myCustomAttribute", true);
}
}
this is the code for adding attribute to a row in rowdatabound
i think i am kind of missing the point... what exactly you are trying
to accomplish?
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com
Well...
hi... i got it...
since you what it from beginning ... it kind of difficult........
because after itemdatabound things will be there.... but still you
have the option...
since you are binding the grid view against some data source...the
item you want to embade is already in your dataitem... right?
so why don't you just use e.Row.DataItem and cust it to appropriate
type... and then check value....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com- Hide quoted text -

- Show quoted text -
Hi... not necessary every dataitem you need to show... .
modify the column collection and make all the not necessary column's
visible property to false...

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 14 '07 #8
u actullay mean that the DataItem in e.Row.DataItem
will still contain all the values that i have in my select
but are not actually visible to the user?
if yes then GREAT!

"Masudur" wrote:
On Jul 14, 4:08 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
to use e.Row.DataItem the data will appar on screnn and i want to avoid it

"Masudur" wrote:
On Jul 12, 8:46 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
ow now that i think i am not sure this is a good solutuin
beacuse i wanted from start to put a hidden value beacuwe i got it from the db
and the when the RowDataBound evernt occurs
by the hidden value i put in each row i want to change the row color
so what the correct way to do it?
thnaks
peleg
"Masudur" wrote:
On Jul 12, 3:04 pm, pelegk1 <pele...@discussions.microsoft.comwrote:
i think that the e.row.attribute.add is the solution
how in the RowDataBound event i can get the value on each row so
i can use it for diffrent things
thnaks
peleg
"Masudur" wrote:
On Jul 12, 3:16 am, pelegk1 <pele...@discussions.microsoft.comwrote:
i have a GridView and a hidden field :
<asp:TemplateField Visible=false >
<ItemTemplate >
<asp:HiddenField Value="<%#Eval("isActive")%>"
id="hidIsActive" runat=server />
</ItemTemplate>
</asp:TemplateField>
1)when i check the sorce of html i dont see the hidden field - why is that?
2)on RowDataBound event, when i check the rows i want to check thr above
field value,and to do something on certin conditions.
the thing is that its value is set in a "Value" property while i try to
access using :
e.Row.Cells(5).Text
i wont get anything beacuse i access the wrong properrty
what can i do?
thnaks in advance
Peleg
Hi...
"1)when i check the sorce of html i dont see the hidden field - why is
that?"
hi id you set any controls property to visible=false... asp.net does
not render them in client page....
i am not sure wheither hidden value also do that or not...
you can use html hidden input field to test that... (ofcourse with
runat server attribute)
i can see that you are using hidden field... but is that necessary?
what is "isActive"? doesn't seems to me it is coming from any
dataitem.. ratherthan page property...
if you want to perform any job depending on a cell value of the
dataitem... you should do in rowdatabound.. as i can see that you are
already doing that... so next thing is after accomplish your job...
you what to do some business on, lets say rowcommand... or
itemcommand,, in that case i assume you want to save the value
"IsActive" with the row...
well you can use e.row.attribute.add.... to add some attribute value
in itemdataboud...
and then retrive in row command....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
>www.kaz.com.bd
>http://munnacs.110mb.com
Hi...
protected void GridViewTasks_RowDataBound(object sender,
GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("myCustomAttribute", true);
}
}
this is the code for adding attribute to a row in rowdatabound
i think i am kind of missing the point... what exactly you are trying
to accomplish?
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
>www.kaz.com.bd
>http://munnacs.110mb.com
Well...
hi... i got it...
since you what it from beginning ... it kind of difficult........
because after itemdatabound things will be there.... but still you
have the option...
since you are binding the grid view against some data source...the
item you want to embade is already in your dataitem... right?
so why don't you just use e.Row.DataItem and cust it to appropriate
type... and then check value....
Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
>www.kaz.com.bd
>http://munnacs.110mb.com- Hide quoted text -
- Show quoted text -

Hi... not necessary every dataitem you need to show... .
modify the column collection and make all the not necessary column's
visible property to false...

Thanks
Md. Masudur Rahman (Munna)
kaz Software Ltd.
www.kaz.com.bd
http://munnacs.110mb.com

Jul 14 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5572
by: | last post by:
Hello, I am trying to get add a product to a cart from a gridview control when a button in the gridview is clicked. I have a book on how to do this in asp.net 2.0 but it is done by specifying...
0
1117
by: Mike N | last post by:
Using the Gridview control in ASP.NET i developed a a web form which displays general user information using simple databinding ad databound columns direct to a dataset. I wanted to hide my ID...
6
8243
by: Dabbler | last post by:
I have a dropdownlist in a GridView ItemTemplate. I need to bind the ddl to an SqlDataSource, then have a value from a boundfield in the row be passed as the keyfield for select where clause. Im...
1
1382
by: Loading name... | last post by:
Hey asp.net 2.0 I have a GridView on my webpage. The datasource behind this GridView needs 1 parameter. This parameter is afaik only available from the code (the parameter is the...
6
3444
by: CSharpguy | last post by:
In my gridview I have 2 -3 template fields which are hyperlinks. I allow the user to print this grid. When the grid prints it also prints the links, how can I take the user to a print preview page...
4
7208
by: =?Utf-8?B?QmFidU1hbg==?= | last post by:
Hi, I have a GridView and a SqlDataSource controls on a page. The SqlDataSource object uses stored procedures to do the CRUD operations. The DataSource has three columns one of which -...
2
2239
by: Steven Nagy | last post by:
Hi, I am painfully aware of the fact that with a GridView bound to an ObjectDataSource that if you have a hidden grid column (visible=false) then it does not post back that field to your...
1
2401
by: cooldude | last post by:
I have a gridview component and it has a template field associated with it. However when I used gridview.Cells.Text it is null or balnk. Also the template field has not control associated with...
9
2879
by: RobertTheProgrammer | last post by:
Hi all, Hopefully this one is rather simple. I just haven't been able to figure it out. On my GridView I have some hidden key columns which I've hidden by using tha attribute Visible="false"...
0
7112
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6974
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7183
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6852
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7356
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4878
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4573
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3084
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1389
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.