Ask a Question related to ASP.NET General, Design and Development.
-
brrrdog #1
extended ascii delimiters when when writing to outputstream
Whenever I write to Response.Outputstream after doing a
plain response.write, I get a delimiter between the two
writes that is made up of three extended ascii chars
(decimal equivalents 239, 187, 191). This doesn't seem to
upset the browser but i'm wondering what this sequence is
for? Is there a way to turn it off?
Example: Excuting the following code...
private void Page_Load(object sender, System.EventArgs e)
{
XslTransform xslt = new XslTransform();
xslt.Load(Server.MapPath("XSLTFile1.xslt"));
XmlDataDocument xml = new XmlDataDocument();
xml.Load(Server.MapPath("XMLFile1.xml"));
Response.Write("Before Outputstream");
xslt.Transform(xml.CreateNavigator
(),null,Response.OutputStream);
Response.Write("After outputstream");
}
//yields...
Before OutputstreamxslResultsAfter outputstream
//the same thing with the decimal values substituted
for //the extra chars...
<239><187><191>Before
Outputstream<239><187><191>xslResultsAfter outputstream
brrrdog Guest
-
Nested delimiters (#)
I created a bunch of vars using a loop and named them: X#LoopCount# so you end up with X1, X2, X3... all as variables. Now I want to use a loop... -
CFFILE and extended ASCII/accented characters
Hello- I'm using CF 6.1 as a front-end to a MySQL database that happens to contain extended ASCII characters (e.g., accented vowels). CF displays... -
Parsing a PHP String without Delimiters
I'm trying to figure out how to parse the MySQL Date/Time group '20031001155704' into meaningful data (i.e. - year, month, day, hour, minute, and... -
Response.OutputStream
Hi all, I'm using a second page to write dynamical generated images into the outputstream. This avoids using tmp-files on disc. My code-behind... -
Trouble with extended ascii
We are creating a project that will be used with Spanish, French and German alphabets. Since Director doesn't support unicode, we are using extended...



Reply With Quote

