Click here to Skip to main content
15,898,373 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: AJAX textchange event then click event Pin
CandyMe25-Oct-07 18:03
CandyMe25-Oct-07 18:03 
QuestionDisable CompareValidator [modified] Pin
CandyMe24-Oct-07 19:46
CandyMe24-Oct-07 19:46 
AnswerRe: Disable CompareValidator Pin
pmarfleet25-Oct-07 8:13
pmarfleet25-Oct-07 8:13 
GeneralRe: Disable CompareValidator Pin
CandyMe25-Oct-07 18:01
CandyMe25-Oct-07 18:01 
Questionbyte[] memory consumption excedded Pin
Navneet Hegde24-Oct-07 4:14
Navneet Hegde24-Oct-07 4:14 
AnswerRe: byte[] memory consumption excedded Pin
Guffa24-Oct-07 9:22
Guffa24-Oct-07 9:22 
GeneralRe: byte[] memory consumption excedded Pin
Navneet Hegde24-Oct-07 20:01
Navneet Hegde24-Oct-07 20:01 
GeneralRe: byte[] memory consumption excedded Pin
Guffa25-Oct-07 1:08
Guffa25-Oct-07 1:08 
Navneet Hegde wrote:
byte[] bs = memstream.GetBuffer();


The GetBuffer method gives you the underlying array that the MemoryStream is using, including unused space. Use the ToArray method to create an array that only contains the used data.

Navneet Hegde wrote:
MemoryStream input = new MemoryStream();
input.Write(ds, 0, ds.Length);
input.Position = 0;


Just do:

MemoryStream input = new MemoryStream(ds);

Navneet Hegde wrote:
GZipStream Unzipit = new GZipStream(input, 0, true);


Have you verified that CompressionMode.Decompress actually has the value 0?

---
"Anything that is in the world when you're born is normal and ordinary and is just a natural part of the way the world works. Anything that's invented between when you're fifteen and thirty-five is new and exciting and revolutionary and you can probably get a career in it. Anything invented after you're thirty-five is against the natural order of things."
-- Douglas Adams

GeneralRe: byte[] memory consumption excedded Pin
Navneet Hegde28-Oct-07 21:11
Navneet Hegde28-Oct-07 21:11 
Questionoverride css for select element Pin
amit4uall23-Oct-07 20:40
amit4uall23-Oct-07 20:40 
AnswerRe: override css for select element Pin
WoutL23-Oct-07 22:27
WoutL23-Oct-07 22:27 
GeneralRe: override css for select element Pin
amit4uall23-Oct-07 23:32
amit4uall23-Oct-07 23:32 
Questionrelated to the AJAX.. [modified] Pin
abhishek chouksey23-Oct-07 19:27
abhishek chouksey23-Oct-07 19:27 
AnswerRe: related to the AJAX.. Pin
Christian Graus23-Oct-07 23:04
protectorChristian Graus23-Oct-07 23:04 
QuestionPHP Pin
RaveRare23-Oct-07 19:12
RaveRare23-Oct-07 19:12 
AnswerRe: PHP Pin
Christian Graus23-Oct-07 23:06
protectorChristian Graus23-Oct-07 23:06 
QuestionRemove confirmation msg on window.close Pin
vanhawk23-Oct-07 17:00
vanhawk23-Oct-07 17:00 
AnswerRe: Remove confirmation msg on window.close Pin
WoutL23-Oct-07 22:28
WoutL23-Oct-07 22:28 
AnswerRe: Remove confirmation msg on window.close Pin
kubben24-Oct-07 1:50
kubben24-Oct-07 1:50 
Questionmouse hover popup Pin
Jason Weibel23-Oct-07 16:26
Jason Weibel23-Oct-07 16:26 
AnswerRe: mouse hover popup Pin
Duane in Japan23-Oct-07 18:00
Duane in Japan23-Oct-07 18:00 
GeneralRe: mouse hover popup Pin
Jason Weibel24-Oct-07 3:45
Jason Weibel24-Oct-07 3:45 
QuestionCan we convert ASP.Net Project to EXE File ? Pin
hifiger200423-Oct-07 15:33
hifiger200423-Oct-07 15:33 
AnswerRe: Can we convert ASP.Net Project to EXE File ? Pin
Christian Graus23-Oct-07 15:36
protectorChristian Graus23-Oct-07 15:36 
GeneralRe: Can we convert ASP.Net Project to EXE File ? Pin
hifiger200423-Oct-07 15:50
hifiger200423-Oct-07 15:50 

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.