using dynamic xml files from .aspx
I populate the grid using xml retreived from a database through an ASP.Net backend, thus:
var table = new Active.XML.Table;
table.setURL("http://ip/WebForm.aspx?func=getDynamicXML");
However I found that it would not work. The request object was appending a '?' to the URL which confused the aspx code. I don't know if this constitutes a bug as such, however I have managed to find a workaround and post it here for anybody attempting to achieve the same...
file: request.js
function obj.request()
line: 12
change :
if (this._requestMethod != "POST") {
to :
if ((this._requestMethod != "POST")&&(data!='')) {
and you are in business.
var table = new Active.XML.Table;
table.setURL("http://ip/WebForm.aspx?func=getDynamicXML");
However I found that it would not work. The request object was appending a '?' to the URL which confused the aspx code. I don't know if this constitutes a bug as such, however I have managed to find a workaround and post it here for anybody attempting to achieve the same...
file: request.js
function obj.request()
line: 12
change :
if (this._requestMethod != "POST") {
to :
if ((this._requestMethod != "POST")&&(data!='')) {
and you are in business.
eddyoc
February 19,