G
Guest
Hello
I need to automatically send a user a copy of a report when they view it on a web application
I have been trying to do this with
System.IO.Stream stream = this.Response.OutputStream
byte[] buffer = new byte[buffer.Length]; //Length not support exceptio
stream.Read(buffer, 0, buffer.Length)
System.Text.StringBuilder str = new System.Text.StringBuilder()
for(int i=0;i>buffer.Length;i++) str.Append(buffer.ToString())
It seems like a pretty straight forward thing to do, Theres propbobally a property or something I can use
Thanks in advance.
I need to automatically send a user a copy of a report when they view it on a web application
I have been trying to do this with
System.IO.Stream stream = this.Response.OutputStream
byte[] buffer = new byte[buffer.Length]; //Length not support exceptio
stream.Read(buffer, 0, buffer.Length)
System.Text.StringBuilder str = new System.Text.StringBuilder()
for(int i=0;i>buffer.Length;i++) str.Append(buffer.ToString())
It seems like a pretty straight forward thing to do, Theres propbobally a property or something I can use
Thanks in advance.