Click here to Skip to main content
15,899,314 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionInstallation of Visual studio Pin
Arpita2722-Feb-09 19:05
Arpita2722-Feb-09 19:05 
AnswerRe: Installation of Visual studio Pin
Abhijit Jana22-Feb-09 19:43
professionalAbhijit Jana22-Feb-09 19:43 
Questiondropdownlist selectedvalue without selected word in html, possible? Pin
VinothRao22-Feb-09 16:25
VinothRao22-Feb-09 16:25 
AnswerRe: dropdownlist selectedvalue without selected word in html, possible? Pin
Greg Chelstowski22-Feb-09 21:16
Greg Chelstowski22-Feb-09 21:16 
Questionmultiple file uploads... Pin
l a u r e n22-Feb-09 3:17
l a u r e n22-Feb-09 3:17 
AnswerRe: multiple file uploads... Pin
Matt Cavanagh22-Feb-09 9:27
Matt Cavanagh22-Feb-09 9:27 
GeneralRe: multiple file uploads... Pin
Luis Alonso Ramos22-Feb-09 10:35
Luis Alonso Ramos22-Feb-09 10:35 
AnswerRe: multiple file uploads... Pin
Christian Graus22-Feb-09 11:12
protectorChristian Graus22-Feb-09 11:12 
You need seperate controls - you need to render 6 file controls, so you need 6 controls to handle them. You CAN loop through the forms control collection looking for input controls if you like, rather than explicitly dealing with each one, that way you can change the number of controls on the form at any time and it will just work.

foreach(Control control in this.Controls)
{
HtmlnputFile file = control as HtmlInputFile;

if (file != null)
{
// process
}
}

Now, I believe for this to work, it needs to be done recursively.

Christian Graus

Driven to the arms of OSX by Vista.

QuestionConnecting with database which is Placed inside App_Data folder Error Invalid value for key 'attachdbfilename'. Pin
Rameez Raja22-Feb-09 2:23
Rameez Raja22-Feb-09 2:23 
AnswerRe: Connecting with database which is Placed inside App_Data folder Error Invalid value for key 'attachdbfilename'. Pin
Xmen Real 22-Feb-09 15:12
professional Xmen Real 22-Feb-09 15:12 
Question'... is not a member of ...' Error Pin
EOTB22-Feb-09 2:01
EOTB22-Feb-09 2:01 
QuestionOpening Excel file from the network Pin
Larvex22-Feb-09 0:28
Larvex22-Feb-09 0:28 
AnswerRe: Opening Excel file from the network Pin
Christian Graus22-Feb-09 11:14
protectorChristian Graus22-Feb-09 11:14 
GeneralRe: Opening Excel file from the network Pin
Larvex22-Feb-09 11:18
Larvex22-Feb-09 11:18 
GeneralRe: Opening Excel file from the network Pin
Christian Graus22-Feb-09 11:37
protectorChristian Graus22-Feb-09 11:37 
Questionhow to use login form in VS 2008 Pin
rosae61921-Feb-09 22:24
rosae61921-Feb-09 22:24 
AnswerRe: how to use login form in VS 2008 Pin
Christian Graus22-Feb-09 11:13
protectorChristian Graus22-Feb-09 11:13 
QuestionAJAX Pin
M.Ambigai21-Feb-09 19:43
M.Ambigai21-Feb-09 19:43 
AnswerRe: AJAX Pin
Luis Alonso Ramos21-Feb-09 22:41
Luis Alonso Ramos21-Feb-09 22:41 
AnswerRe: AJAX Pin
praveen00322-Feb-09 0:25
praveen00322-Feb-09 0:25 
AnswerRe: AJAX Pin
Christian Graus22-Feb-09 11:15
protectorChristian Graus22-Feb-09 11:15 
AnswerRe: AJAX Pin
anandhakrishnan22-Feb-09 20:08
anandhakrishnan22-Feb-09 20:08 
Questionverifying password with database password Pin
rosae61921-Feb-09 17:29
rosae61921-Feb-09 17:29 
AnswerRe: verifying password with database password Pin
ABitSmart21-Feb-09 19:15
ABitSmart21-Feb-09 19:15 
AnswerRe: verifying password with database password Pin
Christian Graus22-Feb-09 11:39
protectorChristian Graus22-Feb-09 11:39 

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.