Click here to Skip to main content
15,895,667 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Generalasp.net/html Pin
Member 41949065-Mar-08 16:24
Member 41949065-Mar-08 16:24 
GeneralRe: asp.net/html Pin
Christian Graus5-Mar-08 16:58
protectorChristian Graus5-Mar-08 16:58 
QuestionIs programming from diagrams a good idea? (new application) Pin
Vimal Naran5-Mar-08 12:29
Vimal Naran5-Mar-08 12:29 
GeneralRe: Is programming from diagrams a good idea? (new application) Pin
Expert Coming5-Mar-08 19:39
Expert Coming5-Mar-08 19:39 
GeneralProblem with get values from IFRAME Pin
c#ivan5-Mar-08 12:01
c#ivan5-Mar-08 12:01 
GeneralRe: Problem with get values from IFRAME Pin
Expert Coming5-Mar-08 19:27
Expert Coming5-Mar-08 19:27 
GeneralRe: Problem with get values from IFRAME Pin
c#ivan7-Mar-08 11:18
c#ivan7-Mar-08 11:18 
QuestionGridview template field. I have to click Update twice for edit mode. how can i make it work with single click? Pin
Dong Kim5-Mar-08 11:23
Dong Kim5-Mar-08 11:23 
I have gridview for update by template field. Update activate with click twice. How can i make it work with single click? This is coding

.aspx ->
<asp:BoundField DataField="ITM_MGRP" HeaderText="M-Grp" ReadOnly="True" />
<asp:BoundField DataField="ITM_SGRP" HeaderText="S-Grp" ReadOnly="True" />
<asp:BoundField DataField="POD_ITEMID" HeaderText="ID" ReadOnly="True" />
<asp:BoundField DataField="ITM_DESCIP" HeaderText="Description" ReadOnly="True" />
<asp:BoundField DataField="IVD_UPC" HeaderText="UPC" ReadOnly="True"><HeaderStyle Width="0px" /><ItemStyle Width="0px" /></asp:BoundField>
<asp:BoundField DataField="POD_UNIT" HeaderText="Unit" ReadOnly="True" />
<asp:BoundField DataField="POD_QTY" HeaderText="Ord Qty" ReadOnly="True">
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Left" />
</asp:BoundField>
<asp:TemplateField HeaderText="Rcv Price">
<ItemTemplate>
<asp:Label ID="lRCVPRI" runat="server" Text='<%# Bind("RCVPRICE") %>' Width="40px"></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtRCVPRI" runat="server" Text='<% Bind("RCVPRICE") %>' Width="40px"></asp:TextBox>
</EditItemTemplate>
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Right" />
</asp:TemplateField>
<asp:TemplateField HeaderText="Rcv Qty" >
<ItemTemplate>
<asp:Label ID="lRCVQTY" runat="server" Text='<%# Bind("RCVQTY") %>' Width="30px"></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtRCVQTY" runat="server" Text='<% Bind("RCVQTY") %>' Width="30px"></asp:TextBox>
</EditItemTemplate>
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Right" />
</asp:TemplateField>
<asp:TemplateField HeaderText="Edit" ShowHeader="False">
<EditItemTemplate>
<asp:LinkButton ID="lbkUpdate" runat="server" CausesValidation="true" CommandName="Update" Text="Update"></asp:LinkButton>
<asp:LinkButton ID="lnkCancel" runat="server" CausesValidation="false" CommandName="Cancel" Text="Cancel"></asp:LinkButton>
</EditItemTemplate>
<ItemTemplate>
<asp:LinkButton ID="lnkEdit" runat="server" CausesValidation="false" CommandName="Edit" Text="Edit"></asp:LinkButton>
</ItemTemplate>
<HeaderStyle HorizontalAlign="Left" />
<ItemStyle HorizontalAlign="Right" />
</asp:TemplateField>

.aspx.cs ->
protected void grpITEM_RowEditing(object sender, GridViewEditEventArgs e)
{
grpITEM.EditIndex = e.NewEditIndex;
}

Please help me.
GeneralRe: Gridview template field. I have to click Update twice for edit mode. how can i make it work with single click? Pin
N.Surendra Prasad6-Mar-08 23:39
N.Surendra Prasad6-Mar-08 23:39 
QuestionRe: Gridview template field. I have to click Update twice for edit mode. how can i make it work with single click? Pin
Dong Kim7-Mar-08 4:34
Dong Kim7-Mar-08 4:34 
GeneralRe: Gridview template field. I have to click Update twice for edit mode. how can i make it work with single click? Pin
N.Surendra Prasad9-Mar-08 20:22
N.Surendra Prasad9-Mar-08 20:22 
Questionhow to validate check box? Pin
Dong Kim5-Mar-08 11:15
Dong Kim5-Mar-08 11:15 
GeneralRe: how to validate check box? Pin
Christian Graus5-Mar-08 11:27
protectorChristian Graus5-Mar-08 11:27 
QuestionRe: how to validate check box? Pin
Dong Kim5-Mar-08 12:37
Dong Kim5-Mar-08 12:37 
GeneralRe: how to validate check box? Pin
P Tagore Srinivas Dhanunjay5-Mar-08 21:02
P Tagore Srinivas Dhanunjay5-Mar-08 21:02 
GeneralRead data from customers session Pin
AlexeiXX35-Mar-08 10:41
AlexeiXX35-Mar-08 10:41 
GeneralRe: Read data from customers session Pin
Christian Graus5-Mar-08 10:54
protectorChristian Graus5-Mar-08 10:54 
GeneralRe: Read data from customers session Pin
AlexeiXX35-Mar-08 13:22
AlexeiXX35-Mar-08 13:22 
GeneralHTML errors solving while migrating Pin
umashankergr85-Mar-08 8:31
umashankergr85-Mar-08 8:31 
GeneralRe: HTML errors solving while migrating Pin
pmarfleet5-Mar-08 9:09
pmarfleet5-Mar-08 9:09 
Questionjavascript:window.open, won't Pin
goodideadave5-Mar-08 7:48
goodideadave5-Mar-08 7:48 
GeneralWrong forum Pin
pmarfleet5-Mar-08 9:02
pmarfleet5-Mar-08 9:02 
GeneralRe: Wrong forum Pin
goodideadave5-Mar-08 10:03
goodideadave5-Mar-08 10:03 
GeneralRe: Wrong forum Pin
pmarfleet5-Mar-08 10:09
pmarfleet5-Mar-08 10:09 
GeneralRe: Wrong forum Pin
Guffa5-Mar-08 10:50
Guffa5-Mar-08 10:50 

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.