autobrowse images in ASP.NET

oscarina

New Member
I am trying to use http://msjolund.github.io/autobrowse/ in an ASP.NET page.I have setup a webservice following this http://www.mikesdotnetting.com/Arti...eturned-from-ASP.NET-Web-Services-with-jQueryit basically returns image links. so i have something like this and this works fine but don't know how to get it work with autobrowse\[code\] $.ajax({ type: "POST", url: "Service.asmx/GetImages", data: "{}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(response) { var images = response.d; $('#output').empty(); $.each(images, function(index, image) { $('#output').append('<img src="' + image.link +'"/>'); }); }, failure: function(msg) { $('#output').text(msg); } });\[/code\]appreciate if someone can help out.
 
Back
Top