Click here to Skip to main content
15,903,030 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Adding an onmousemove/mouseover event to items in a checkboxlist? Pin
ballameharmurali21-Jun-07 2:44
ballameharmurali21-Jun-07 2:44 
GeneralRe: Adding an onmousemove/mouseover event to items in a checkboxlist? Pin
Sathesh Sakthivel21-Jun-07 2:54
Sathesh Sakthivel21-Jun-07 2:54 
AnswerRe: Adding an onmousemove/mouseover event to items in a checkboxlist? Pin
PrakashBhaskar21-Jun-07 3:00
PrakashBhaskar21-Jun-07 3:00 
GeneralRe: Adding an onmousemove/mouseover event to items in a checkboxlist? Pin
AbrahamErnest21-Jun-07 3:26
AbrahamErnest21-Jun-07 3:26 
GeneralRe: Adding an onmousemove/mouseover event to items in a checkboxlist? Pin
PrakashBhaskar21-Jun-07 18:12
PrakashBhaskar21-Jun-07 18:12 
GeneralRe: Adding an onmousemove/mouseover event to items in a checkboxlist? Pin
sidbaruah25-Jun-07 23:29
sidbaruah25-Jun-07 23:29 
QuestionHi I need some help regarding Upload File Code Pin
rajeshjainchn21-Jun-07 2:19
rajeshjainchn21-Jun-07 2:19 
AnswerRe: Hi I need some help regarding Upload File Code Pin
PrakashBhaskar21-Jun-07 2:34
PrakashBhaskar21-Jun-07 2:34 
I think i have solved your problem


note filMyFile is a file control id

// Check to see if file was uploaded
if( filMyFile.PostedFile != null )
{
// Get a reference to PostedFile object
HttpPostedFile myFile = filMyFile.PostedFile;
// Get size of uploaded file
int nFileLen = myFile.ContentLength;
// make sure the size of the file is > 0
if( nFileLen > 0 )
{
// Allocate a buffer for reading of the file
byte[] myData = new byte[nFileLen];
// Read uploaded file from the Stream
myFile.InputStream.Read(myData, 0, nFileLen);
// Create a name for the file to store
string strFilename = Path.GetFileName(myFile.FileName);
// Write data into a file
WriteToFile(Server.MapPath(strFilename), ref myData);
}
}

Thanks
Warm Regards
Prakash-B

Questionneed urgent max two records..... Pin
Member 387988121-Jun-07 1:36
Member 387988121-Jun-07 1:36 
AnswerRe: need urgent max two records..... Pin
Sonia Gupta21-Jun-07 1:43
Sonia Gupta21-Jun-07 1:43 
GeneralRe: need urgent max two records..... Pin
N a v a n e e t h21-Jun-07 2:38
N a v a n e e t h21-Jun-07 2:38 
AnswerRe: need urgent max two records..... Pin
Sandeep Akhare21-Jun-07 1:56
Sandeep Akhare21-Jun-07 1:56 
AnswerRe: need urgent max two records..... Pin
_AK_21-Jun-07 2:09
_AK_21-Jun-07 2:09 
AnswerRe: need urgent max two records..... Pin
Vipin.d21-Jun-07 3:11
Vipin.d21-Jun-07 3:11 
QuestionHelp with GridView custom Paging (asp.net c#) Pin
But_Im_a_Lady21-Jun-07 1:34
But_Im_a_Lady21-Jun-07 1:34 
AnswerRe: Help with GridView custom Paging (asp.net c#) Pin
Sonia Gupta21-Jun-07 2:08
Sonia Gupta21-Jun-07 2:08 
Questionrefresh the web page in asp.net 2005 Pin
Sonia Gupta21-Jun-07 1:31
Sonia Gupta21-Jun-07 1:31 
AnswerRe: refresh the web page in asp.net 2005 Pin
SunnyGarg21-Jun-07 1:38
SunnyGarg21-Jun-07 1:38 
GeneralRe: refresh the web page in asp.net 2005 Pin
Sonia Gupta21-Jun-07 1:56
Sonia Gupta21-Jun-07 1:56 
GeneralRe: refresh the web page in asp.net 2005 Pin
Sandeep Akhare21-Jun-07 1:57
Sandeep Akhare21-Jun-07 1:57 
GeneralRe: refresh the web page in asp.net 2005 Pin
Sonia Gupta21-Jun-07 2:06
Sonia Gupta21-Jun-07 2:06 
Question[Message Deleted] Pin
sree reddy21-Jun-07 1:24
sree reddy21-Jun-07 1:24 
AnswerRe: dropdownlist Pin
Sandeep Akhare21-Jun-07 1:46
Sandeep Akhare21-Jun-07 1:46 
AnswerRe: dropdownlist Pin
Sathesh Sakthivel21-Jun-07 1:49
Sathesh Sakthivel21-Jun-07 1:49 
AnswerRe: dropdown list Pin
DavidNohejl21-Jun-07 2:05
DavidNohejl21-Jun-07 2:05 

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.