Click here to Skip to main content
15,921,941 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Panel Pin
KhandelwalA8-Jul-09 19:52
KhandelwalA8-Jul-09 19:52 
QuestionEmbed Excel sheet in web page Pin
samerh8-Jul-09 0:12
samerh8-Jul-09 0:12 
AnswerRe: Embed Excel sheet in web page Pin
Manas Bhardwaj8-Jul-09 0:45
professionalManas Bhardwaj8-Jul-09 0:45 
GeneralRe: Embed Excel sheet in web page Pin
padmanabhan N8-Jul-09 0:54
padmanabhan N8-Jul-09 0:54 
AnswerRe: Embed Excel sheet in web page Pin
Aman Bhullar8-Jul-09 0:56
Aman Bhullar8-Jul-09 0:56 
Questionhidden column Pin
vikas shukla8-Jul-09 0:08
vikas shukla8-Jul-09 0:08 
AnswerRe: hidden column Pin
Abhijit Jana8-Jul-09 0:14
professionalAbhijit Jana8-Jul-09 0:14 
AnswerRe: hidden column Pin
Zafar A khan 8-Jul-09 0:22
professionalZafar A khan 8-Jul-09 0:22 
in asp.net hidden field could not render there u can not access it.
but u can apply the technique here.
insert template field hide it. and access its ItemTemplate Control.

<asp:GridView ID="grd" Width="100%" runat="server" AllowPaging="True" AutoGenerateColumns="False" PageSize="15" AutoGenerateEditButton="True" >
<Columns>

<asp:TemplateField HeaderText="ID" Visible="False">
<ItemTemplate >
<asp:Label ID="lblID" runat="server" Text='<%# Bind("ID") %>'></asp:Label>
</ItemTemplate>
<HeaderStyle Width="190px" />
<ItemStyle Width="190px" />
</asp:TemplateField>

</Columns>
</asp:GridView>



foreach (GridViewRow row in grd.Rows)
{
if (row.RowType == DataControlRowType.DataRow)
{
Label lblID = (Label)row.FindControl("lblID");
string txt = lblID.Text;
}
}
AnswerRe: hidden column Pin
padmanabhan N8-Jul-09 0:22
padmanabhan N8-Jul-09 0:22 
AnswerRe: hidden column Pin
Gamzun8-Jul-09 2:08
Gamzun8-Jul-09 2:08 
Questionupdateable editable Gridview Pin
dotnetcsharpdev7-Jul-09 23:50
dotnetcsharpdev7-Jul-09 23:50 
AnswerRe: updateable editable Gridview Pin
padmanabhan N8-Jul-09 1:01
padmanabhan N8-Jul-09 1:01 
GeneralRe: updateable editable Gridview Pin
dotnetcsharpdev8-Jul-09 1:08
dotnetcsharpdev8-Jul-09 1:08 
GeneralRe: updateable editable Gridview Pin
Spirits Soft Tech Nology , Dharmapuri8-Jul-09 2:05
Spirits Soft Tech Nology , Dharmapuri8-Jul-09 2:05 
GeneralDont spam Pin
Manas Bhardwaj8-Jul-09 2:28
professionalManas Bhardwaj8-Jul-09 2:28 
Questioncreating a polling system Pin
uglyeyes7-Jul-09 23:32
uglyeyes7-Jul-09 23:32 
AnswerRe: creating a polling system Pin
uglyeyes8-Jul-09 16:49
uglyeyes8-Jul-09 16:49 
QuestionProblem displaying different pdf documents one at a time on an Iframe Pin
LucBite7-Jul-09 23:11
LucBite7-Jul-09 23:11 
Questionremote shutdown Pin
nani66667-Jul-09 23:11
nani66667-Jul-09 23:11 
AnswerRe: remote shutdown Pin
SeMartens7-Jul-09 23:55
SeMartens7-Jul-09 23:55 
AnswerRe: remote shutdown Pin
Manas Bhardwaj7-Jul-09 23:57
professionalManas Bhardwaj7-Jul-09 23:57 
Questionhyperlink in gridview Pin
vikas shukla7-Jul-09 22:58
vikas shukla7-Jul-09 22:58 
AnswerRe: hyperlink in gridview Pin
Manas Bhardwaj7-Jul-09 23:06
professionalManas Bhardwaj7-Jul-09 23:06 
AnswerRe: hyperlink in gridview Pin
Zafar A khan 7-Jul-09 23:34
professionalZafar A khan 7-Jul-09 23:34 
QuestionDisplay PopUp on schedule time and date. Pin
Ajeet mittal7-Jul-09 22:54
Ajeet mittal7-Jul-09 22:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.