Click here to Skip to main content
16,005,316 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to get the Site Address from a page Pin
Britney S. Morales22-Nov-06 8:16
Britney S. Morales22-Nov-06 8:16 
QuestionGet DisplySetting Pin
Manithar22-Nov-06 3:54
Manithar22-Nov-06 3:54 
AnswerRe: Get DisplySetting Pin
Kapil Thakur23-Nov-06 1:18
Kapil Thakur23-Nov-06 1:18 
Questionopening command line from asp.net application Pin
jabbarsb22-Nov-06 3:45
jabbarsb22-Nov-06 3:45 
AnswerRe: opening command line from asp.net application Pin
l0kke22-Nov-06 3:54
l0kke22-Nov-06 3:54 
AnswerRe: opening command line from asp.net application Pin
indianet22-Nov-06 15:06
indianet22-Nov-06 15:06 
QuestionUpdating Db from GRIDVIEW with Hidden Column [modified] Pin
marconi Flangepants22-Nov-06 3:45
marconi Flangepants22-Nov-06 3:45 
AnswerRe: Updating Db from DataView with Hidden Column Pin
l0kke22-Nov-06 4:01
l0kke22-Nov-06 4:01 
I don't know if that's yoyr problem, as you didn't write any code here, but it could be because data of hidden columns are not stored in viewstate, so they are not available after postback. Small trick is to make column invisible after you databind data:

myGridViewColumn.Visible = true;
myGridView.DataBind();
myGridViewColumn.Visible = false;

Try it, maybe that solves your problem.

Pilo
GeneralRe: Updating Db from GRIDVIEW with Hidden Column [modified] Pin
marconi Flangepants22-Nov-06 4:37
marconi Flangepants22-Nov-06 4:37 
GeneralRe: Updating Db from GRIDVIEW with Hidden Column Pin
l0kke22-Nov-06 5:15
l0kke22-Nov-06 5:15 
GeneralRe: Updating Db from GRIDVIEW with Hidden Column Pin
marconi Flangepants22-Nov-06 5:36
marconi Flangepants22-Nov-06 5:36 
GeneralRe: Updating Db from GRIDVIEW with Hidden Column Pin
l0kke22-Nov-06 5:53
l0kke22-Nov-06 5:53 
GeneralRe: Updating Db from GRIDVIEW with Hidden Column Pin
marconi Flangepants22-Nov-06 6:32
marconi Flangepants22-Nov-06 6:32 
GeneralRe: Updating Db from DataView with Hidden Column Pin
marconi Flangepants22-Nov-06 4:54
marconi Flangepants22-Nov-06 4:54 
Questionvs studio server prob Pin
xiaowenjie22-Nov-06 3:43
xiaowenjie22-Nov-06 3:43 
AnswerRe: vs studio server prob Pin
l0kke22-Nov-06 4:10
l0kke22-Nov-06 4:10 
GeneralRe: vs studio server prob [modified] Pin
xiaowenjie23-Nov-06 3:04
xiaowenjie23-Nov-06 3:04 
GeneralRe: vs studio server prob Pin
l0kke27-Nov-06 12:44
l0kke27-Nov-06 12:44 
QuestionHow to disable one required field vaildator Pin
Rizwan Bashir22-Nov-06 3:43
Rizwan Bashir22-Nov-06 3:43 
AnswerRe: How to disable one required field vaildator Pin
marconi Flangepants22-Nov-06 3:49
marconi Flangepants22-Nov-06 3:49 
GeneralRe: How to disable one required field vaildator Pin
ednrgc22-Nov-06 7:22
ednrgc22-Nov-06 7:22 
Questionopening command line from web app Pin
jabbarsb22-Nov-06 3:42
jabbarsb22-Nov-06 3:42 
AnswerRe: opening command line from web app Pin
Guffa22-Nov-06 5:42
Guffa22-Nov-06 5:42 
GeneralRe: opening command line from web app Pin
l0kke22-Nov-06 6:02
l0kke22-Nov-06 6:02 
AnswerRe: opening command line from web app Pin
Guffa22-Nov-06 9:21
Guffa22-Nov-06 9:21 

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.