Park:

Please post in the ASP forums. But to answer your question - try doing a
Response.write of the val variable to figure out whats being returned.

Also, what are you trying to load in the Load method?
--
Elliot M. Rodriguez, MCSD
*** It would take 227 cans of Mountain Dew to kill me***



"ParkPD" <rigmania@orgio.net> wrote in message
news:u6xXyo5SDHA.1948@TK2MSFTNGP12.phx.gbl...
> Hi,
> I made asp page like this...
> <%
> Response.ContentType = "text/html"
> SET xmlDoc = Server.CreateObject("Microsoft.XMLDOM")
> xmlDoc.async = false
> val = xmlDoc.load(Request)
>
> if val=true then
> Response.Write("ok")
> else
> Response.Write("no")
> end if
> %>
>
> and I post my xml with client MSVC6.0 client.
> It's client is OK I think.
> But always returning response is "no"
>
> Why? Could you have some advice to newbie?
> Thank in advance.
>
>