Click here to Skip to main content
15,887,341 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: menu parent backcolor when hovering child menu Pin
Not Active12-Jun-07 8:18
mentorNot Active12-Jun-07 8:18 
GeneralRe: menu parent backcolor when hovering child menu Pin
janetb9913-Jun-07 9:36
janetb9913-Jun-07 9:36 
GeneralRe: menu parent backcolor when hovering child menu Pin
Not Active13-Jun-07 10:01
mentorNot Active13-Jun-07 10:01 
QuestionSubmit Button Pin
seemamltn12-Jun-07 7:15
seemamltn12-Jun-07 7:15 
AnswerRe: Submit Button Pin
Not Active12-Jun-07 8:04
mentorNot Active12-Jun-07 8:04 
AnswerRe: Submit Button Pin
Biju Sam12-Jun-07 19:05
Biju Sam12-Jun-07 19:05 
GeneralRe: Submit Button Pin
Bajrang Singh13-Jun-07 4:47
Bajrang Singh13-Jun-07 4:47 
QuestionDataGrid dropping values Pin
wood060112-Jun-07 6:45
wood060112-Jun-07 6:45 
I am building a shopping cart type web application. There are two web forms. The first web forms allows a user to select products. The second allows a user to enter quantities for each product selected in the first web form. I use a disconnected datatable to maintain and update selected products and quantities.
The problem is that the datagrid drops any quantity values entered by the user(there is only 1 input TextBox for each row in the datagrid). The code-
foreach(DataRow dr in dtShoppingCart.Rows)
{
if(((TextBox)dataGridItem.FindControl("txtSKU")).Text.ToString() ==
dr["SKU"].ToString())
{
dr["Quantity"] = ((TextBox)dataGridItem.FindControl ("txtQuantity")).Text.ToString();
break;
}
}
Any ideas?
AnswerRe: DataGrid dropping values Pin
Not Active12-Jun-07 6:56
mentorNot Active12-Jun-07 6:56 
GeneralRe: DataGrid dropping values Pin
wood060112-Jun-07 7:10
wood060112-Jun-07 7:10 
GeneralRe: DataGrid dropping values Pin
wood060112-Jun-07 7:34
wood060112-Jun-07 7:34 
GeneralRe: DataGrid dropping values Pin
Not Active12-Jun-07 8:24
mentorNot Active12-Jun-07 8:24 
QuestionPositioning plain text/html Pin
markymark8212-Jun-07 5:25
markymark8212-Jun-07 5:25 
AnswerRe: Positioning plain text/html Pin
Not Active12-Jun-07 5:37
mentorNot Active12-Jun-07 5:37 
GeneralRe: Positioning plain text/html Pin
markymark8212-Jun-07 5:42
markymark8212-Jun-07 5:42 
GeneralRe: Positioning plain text/html Pin
Not Active12-Jun-07 5:51
mentorNot Active12-Jun-07 5:51 
GeneralRe: Positioning plain text/html Pin
markymark8212-Jun-07 5:57
markymark8212-Jun-07 5:57 
Questionwww.dropthings.com related questions Pin
larree1112-Jun-07 5:22
larree1112-Jun-07 5:22 
QuestionSync Scrolling Pin
liona12-Jun-07 2:48
liona12-Jun-07 2:48 
AnswerRe: Sync Scrolling Pin
Arun.Immanuel12-Jun-07 3:07
Arun.Immanuel12-Jun-07 3:07 
GeneralRe: Sync Scrolling Pin
liona12-Jun-07 3:12
liona12-Jun-07 3:12 
AnswerRe: Sync Scrolling Pin
markymark8212-Jun-07 5:46
markymark8212-Jun-07 5:46 
QuestionASP.NET, AJAX and SQL Server question Pin
kallileo12-Jun-07 2:31
kallileo12-Jun-07 2:31 
AnswerRe: ASP.NET, AJAX and SQL Server question Pin
Not Active12-Jun-07 2:51
mentorNot Active12-Jun-07 2:51 
GeneralRe: ASP.NET, AJAX and SQL Server question Pin
kallileo12-Jun-07 3:20
kallileo12-Jun-07 3:20 

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.