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

ASP.NET

 
GeneralRe: List Shows Different Values entered in the textbox Pin
Keith Barrow29-Nov-10 1:06
professionalKeith Barrow29-Nov-10 1:06 
Question"exec sp_databases" shows only system databases. Pin
M_AhsanRiaz28-Nov-10 8:00
M_AhsanRiaz28-Nov-10 8:00 
AnswerRe: "exec sp_databases" shows only system databases. Pin
Not Active28-Nov-10 12:05
mentorNot Active28-Nov-10 12:05 
GeneralRe: "exec sp_databases" shows only system databases. Pin
M_AhsanRiaz28-Nov-10 22:59
M_AhsanRiaz28-Nov-10 22:59 
Questionfile upload woes... Pin
l a u r e n28-Nov-10 5:03
l a u r e n28-Nov-10 5:03 
AnswerRe: file upload woes... Pin
Amar Chaudhary28-Nov-10 6:52
Amar Chaudhary28-Nov-10 6:52 
AnswerRe: file upload woes... Pin
Jörgen Andersson28-Nov-10 9:41
professionalJörgen Andersson28-Nov-10 9:41 
AnswerRe: file upload woes... Pin
musefan29-Nov-10 5:00
musefan29-Nov-10 5:00 
How are you getting the file? Something like...

Request.Files[0];


If so you can try something like...

if(Request.Files[0] != null && Request.Files[0].InputStream.Length > 1048576)
{
   //Uploaded file exists and is greater than 1MB
}

Life goes very fast. Tomorrow, today is already yesterday.

GeneralRe: file upload woes... Pin
l a u r e n29-Nov-10 5:55
l a u r e n29-Nov-10 5:55 
GeneralRe: file upload woes... Pin
musefan29-Nov-10 6:49
musefan29-Nov-10 6:49 
QuestionDymanic CheckBox Pin
treuveni28-Nov-10 1:33
treuveni28-Nov-10 1:33 
AnswerRe: Dymanic CheckBox Pin
Amar Chaudhary28-Nov-10 6:48
Amar Chaudhary28-Nov-10 6:48 
GeneralRe: Dymanic CheckBox Pin
treuveni28-Nov-10 20:36
treuveni28-Nov-10 20:36 
Questionis there key press event on asp.net ? (like in winform) ? Pin
Gali197827-Nov-10 10:18
Gali197827-Nov-10 10:18 
AnswerRe: is there key press event on asp.net ? (like in winform) ? Pin
Pete O'Hanlon27-Nov-10 11:26
mvePete O'Hanlon27-Nov-10 11:26 
AnswerRe: is there key press event on asp.net ? (like in winform) ? Pin
Amar Chaudhary28-Nov-10 6:47
Amar Chaudhary28-Nov-10 6:47 
Questionhow to refresh data in data controls Pin
Deepak Nigam26-Nov-10 16:51
Deepak Nigam26-Nov-10 16:51 
AnswerRe: how to refresh data in data controls Pin
Brij26-Nov-10 18:24
mentorBrij26-Nov-10 18:24 
Questionneed to convert WinForm to WebForm Pin
Gali197826-Nov-10 8:11
Gali197826-Nov-10 8:11 
AnswerRe: need to convert WinForm to WebForm Pin
gaurav_verma_mca26-Nov-10 10:13
gaurav_verma_mca26-Nov-10 10:13 
AnswerRe: need to convert WinForm to WebForm Pin
NeverHeardOfMe26-Nov-10 22:18
NeverHeardOfMe26-Nov-10 22:18 
QuestionExchange Server Get the details of mail on custom form. Pin
stambekar25-Nov-10 18:40
stambekar25-Nov-10 18:40 
QuestionHow to Import columns from one datatable to another Pin
meeram39524-Nov-10 22:03
meeram39524-Nov-10 22:03 
AnswerRe: How to Import columns from one datatable to another Pin
Rhys Gravell24-Nov-10 22:44
professionalRhys Gravell24-Nov-10 22:44 
GeneralRe: How to Import columns from one datatable to another Pin
meeram39526-Nov-10 0:33
meeram39526-Nov-10 0:33 

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.