I guess you mean with out a database server?
What are you trying to do?
Do you want to just allow easy searching of your images or do you want
to also allow users to upload images?
I know from the example you can easily communicate with just an XML
file, the is basically the backbone of ajax.
You can simple read a xml file using a
" function createXMLDOM() {
if (window.ActiveXObject) {
var arrSignatures = ["MSXML2.DOMDocument.5.0",
"MSXML2.DOMDocument.4.0",
"MSXML2.DOMDocument.3.0",
"MSXML2.DOMDocument",
"Microsoft.XmlDom"];
for (var i=0; i < arrSignatures.length; i++) {
try {
var oXmlDom = new ActiveXObject(arrSignatures[i]);
return oXmlDom;
} catch (oError) {
//ignore
}
}
throw new Error("MSXML is not installed on your system.");
} else if (document.implementation &&
document.implementation.createDocument) {
var oXmlDom = document.implementation.createDocument("" ,""
,null);
return oXmlDom;
} else {
throw new Error("Browser Dosen't support XML DOM.");
}
}"
type function to load a xml doc and loop throught its nodes.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---