Click here to Skip to main content
15,913,773 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to deploy Pin
kheer26-Jul-09 21:39
kheer26-Jul-09 21:39 
GeneralRe: how to deploy Pin
Christian Graus26-Jul-09 21:45
protectorChristian Graus26-Jul-09 21:45 
GeneralRe: how to deploy Pin
Abhijit Jana26-Jul-09 21:47
professionalAbhijit Jana26-Jul-09 21:47 
GeneralRe: how to deploy Pin
kheer26-Jul-09 21:56
kheer26-Jul-09 21:56 
GeneralRe: how to deploy Pin
Christian Graus26-Jul-09 21:57
protectorChristian Graus26-Jul-09 21:57 
AnswerRe: how to deploy Pin
Abhishek Sur26-Jul-09 21:58
professionalAbhishek Sur26-Jul-09 21:58 
QuestionHow to convert bytes to file??? Pin
nkmkrishna26-Jul-09 21:03
nkmkrishna26-Jul-09 21:03 
AnswerRe: How to convert bytes to file??? Pin
Aman Bhullar26-Jul-09 21:24
Aman Bhullar26-Jul-09 21:24 
Try

public bool writeByteArrayToFile(byte[] buff, string fileName)
{
bool response = false;

try
{
FileStream fs = new FileStream(fileName, FileMode.Create, FileAccess.ReadWrite);
BinaryWriter bw = new BinaryWriter(fs);
bw.Write(buff);
bw.Close(); 
response = true;
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}

return response;
}


Regards
Aman Bhullar
www.arlivesupport.com[^]

GeneralRe: How to convert bytes to file??? Pin
nkmkrishna26-Jul-09 23:18
nkmkrishna26-Jul-09 23:18 
QuestionHow to Invoke keypress event in web Application Pin
vikas shukla26-Jul-09 20:46
vikas shukla26-Jul-09 20:46 
AnswerRe: How to Invoke keypress event in web Application Pin
ais0726-Jul-09 20:57
ais0726-Jul-09 20:57 
AnswerRe: How to Invoke keypress event in web Application Pin
vikas shukla26-Jul-09 21:03
vikas shukla26-Jul-09 21:03 
GeneralRe: How to Invoke keypress event in web Application Pin
ais0726-Jul-09 21:23
ais0726-Jul-09 21:23 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 21:47
protectorChristian Graus26-Jul-09 21:47 
GeneralRe: How to Invoke keypress event in web Application Pin
Abhishek Sur26-Jul-09 22:01
professionalAbhishek Sur26-Jul-09 22:01 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 22:11
protectorChristian Graus26-Jul-09 22:11 
GeneralRe: How to Invoke keypress event in web Application Pin
ais0726-Jul-09 22:49
ais0726-Jul-09 22:49 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 23:05
protectorChristian Graus26-Jul-09 23:05 
GeneralRe: How to Invoke keypress event in web Application Pin
vikas shukla26-Jul-09 22:29
vikas shukla26-Jul-09 22:29 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 22:32
protectorChristian Graus26-Jul-09 22:32 
AnswerRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 21:46
protectorChristian Graus26-Jul-09 21:46 
AnswerRe: How to Invoke keypress event in web Application Pin
Abhishek Sur26-Jul-09 22:02
professionalAbhishek Sur26-Jul-09 22:02 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 22:11
protectorChristian Graus26-Jul-09 22:11 
GeneralRe: How to Invoke keypress event in web Application Pin
Abhishek Sur26-Jul-09 22:39
professionalAbhishek Sur26-Jul-09 22:39 
QuestionWebsite error on instance of "IConfiguration" (may be due to StructureMap software) Pin
Goalie3526-Jul-09 20:33
Goalie3526-Jul-09 20: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.