Click here to Skip to main content
15,891,908 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionFile Uploader No Longer Working Pin
Dominick Marciano27-Jul-11 7:53
professionalDominick Marciano27-Jul-11 7:53 
QuestionHow to use minRequiredPasswordLength and minRequiredNonalphanumericCharacters? Pin
kbalias27-Jul-11 0:17
kbalias27-Jul-11 0:17 
Questioni want to select mssql2005 or mssql2008 where 2005, 2008 was instlled. Pin
buffering8326-Jul-11 17:23
buffering8326-Jul-11 17:23 
AnswerRe: i want to select mssql2005 or mssql2008 where 2005, 2008 was instlled. Pin
m@dhu26-Jul-11 18:45
m@dhu26-Jul-11 18:45 
AnswerRe: i want to select mssql2005 or mssql2008 where 2005, 2008 was instlled. Pin
Shameel26-Jul-11 21:13
professionalShameel26-Jul-11 21:13 
GeneralHow to get value from invisible column in gridview Pin
sujitdeshpande_1926-Jul-11 2:48
sujitdeshpande_1926-Jul-11 2:48 
GeneralRe: How to get value from invisible column in gridview Pin
Orcun Iyigun26-Jul-11 6:22
Orcun Iyigun26-Jul-11 6:22 
GeneralRe: How to get value from invisible column in gridview Pin
GenJerDan28-Jul-11 6:17
GenJerDan28-Jul-11 6:17 
Don't set it to invisible. If you do, the program won't even bother sending it along.

Use CSS and give that column (and it's Header) a value like this:

CssClass="NotShown"

where NotShown is a CSS class like this:

.NotShown
{
  display: none;
}


The data will be there in the grid, but not visible in the browser, and you can access it in the code behind like this or similar:

GridViewRow selectedRow = GRID.Rows[index];
TableCell HiddenColumn = selectedRow.Cells[5];


(in this example, the hidden column is number 5, of course)

It always itches for the first week or so.

My Mu[sic]
My Films
My Windows Programs, etc.

QuestionProject Code in Asp.net Pin
Akshaya Kumar Patel25-Jul-11 21:44
Akshaya Kumar Patel25-Jul-11 21:44 
AnswerRe: Project Code in Asp.net Pin
Blue_Boy25-Jul-11 23:06
Blue_Boy25-Jul-11 23:06 
AnswerRe: Project Code in Asp.net Pin
R. Giskard Reventlov26-Jul-11 0:11
R. Giskard Reventlov26-Jul-11 0:11 
AnswerRe: Project Code in Asp.net Pin
Not Active26-Jul-11 14:03
mentorNot Active26-Jul-11 14:03 
QuestionHow to identify a particular Web site is not active Pin
Gali197825-Jul-11 7:53
Gali197825-Jul-11 7:53 
AnswerRe: How to identify a particular Web site is not active Pin
R. Giskard Reventlov25-Jul-11 8:03
R. Giskard Reventlov25-Jul-11 8:03 
QuestionHow can Interchange the Language of Web? Pin
Naseem Alam Ansari25-Jul-11 4:12
Naseem Alam Ansari25-Jul-11 4:12 
AnswerRe: How can Interchange the Language of Web? Pin
Blue_Boy25-Jul-11 4:25
Blue_Boy25-Jul-11 4:25 
AnswerRe: How can Interchange the Language of Web? Pin
Dalek Dave27-Jul-11 23:04
professionalDalek Dave27-Jul-11 23:04 
QuestionMessage to user when email not unique? Pin
kbalias25-Jul-11 1:38
kbalias25-Jul-11 1:38 
AnswerRe: Message to user when email not unique? Pin
kbalias25-Jul-11 2:09
kbalias25-Jul-11 2:09 
Questionjavascript Pin
srinu.aadi24-Jul-11 23:03
srinu.aadi24-Jul-11 23:03 
AnswerRe: javascript [modified] Pin
R. Giskard Reventlov24-Jul-11 23:14
R. Giskard Reventlov24-Jul-11 23:14 
QuestionExam Room Allocation Pin
Satish_S24-Jul-11 20:50
Satish_S24-Jul-11 20:50 
AnswerRe: Exam Room Allocation Pin
Blue_Boy24-Jul-11 21:42
Blue_Boy24-Jul-11 21:42 
GeneralRe: Exam Room Allocation Pin
Satish_S24-Jul-11 22:46
Satish_S24-Jul-11 22:46 
AnswerRe: Exam Room Allocation Pin
Richard MacCutchan24-Jul-11 22:56
mveRichard MacCutchan24-Jul-11 22:56 

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.