Hello
I hope one of you fine people can help me.
I have some experience as a VB.net developer but not java.
I have a photography site that I am trying to get up and running a a bit prettier.
I have a MySQL database behind the scene that does some user password storing and hashing.
On my main page I have a textbox, the user inputs their password and if it validate it returns a XML file location (The xml file has a library of photos). I am using Milkbox as my lightbox plugin
What I am trying to do is dynamicly pass the retreaved XML file location in to theonclick="milkbox.addGalleries('THE XML LOCATION')
I would also like it done in once click on the login button but as you see from the code below you have to click the link to load the XML and then click the link to display it
here is my code to my test page, there is not a lot there as im trying to get the functionality done first.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Milkbox - Example page - See the html source</title> <link rel="stylesheet" href="css/default.css" /> <link rel="stylesheet" href="css/main.css" /> <link rel="stylesheet" href="css/milkbox/milkbox.css" /> <style type="text/css" title="text/css"> #test{ width:15px; color:#fff; } </style> <script src="js/mootools-core.js"></script> <script src="js/mootools-more.js"></script> <script src="js/milkbox-yc.js"></script> <script type="text/javascript"> // <![CDATA[ var addJsonGalleries; $(window).addEvent('domready', function() { addJsonGalleries = function() { //add 3 json galleries milkbox.addGalleries([ { name: 'obj-gall1', autoplay: true, autoplay_delay: 4, files: [{ href: 'img/01b.jpg', title: 'Test title' }, { href: 'swf/testswf1.swf?var1=yellow&var2=300', size: "width:550, height:400"}] }, { name: 'obj-gall2', autoplay_delay: 9, files: [{ href: 'swf/testswf2.swf?var1=ultex&var2=30', size: "width:400, height:300" }, { href: 'swf/testswf1.swf', size: "width:550, height:400"}] }, { name: 'obj-gall3', files: [{ href: 'img/croda-b.jpg' }, { href: 'img/ska-b.jpg'}] } ]); } //addObjGalleries }); // ]]> </script> </head> <body> <form id="form1" runat="server"> <div> <asp:TextBox ID="tbPass" runat="server" TextMode="Password"></asp:TextBox> <asp:Button ID="btngo" runat="server" Text="GO" /> <br /> <br /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </div> <br /><br /> <a href="#" onclick="milkbox.addGalleries('xml/galleries.xml')">Add some xml galleries (works only on a web server, not locally)</a> <br /> <a href="#" onclick="milkbox.open('xmlG2',0)">Show an xml gallery (add the galleries first!)</a> <br /> </form> </body> </html>
Thanks for your help.