load

calling dll from kernel mode c++ windows

How would I go about calling a dll from kernel mode? I have tried making a custom lib file using multiple techniques but I cannot get anything to work. I have also researched on google but cannot seem to find anything. I was also curious if it was possible to create entries in the import addres table from c++ or at link time? Thanks for...

nhibernate 'save' -> 'get' problem

HEllo, I'm using nhibernate and have problems regarding user registration on my site. When user wants to register I create new user record in the database and immidiatelly after that the system is logging the user in. Well here lies the problem... When creating user record I'm using NHibernateSession.Save(entity); //does not saves u...

ASP.Net Stress Testing Actual Use of Application

I have read a few questions here about stress testing and people commonly recommend ab selenium jmeter openSTA but these all seem based around Apache and Java and Scripting etc. Selenium seems the best option because you record the actual use of you site which simulates UI load and database requests etc and then play it over an...

Jruby LoadError: Could not open any of [xml2, xslt, exslt] WINDOWS

I am running on windows vista 64 bit operating system. Geografikos is a large project created as a masters thesis project by Jeremy Witmer. It is all coded in JRuby. I am currently expanding the project under his guidance however I cannot run his program. The following gems have been installed: C:\work\Code\geografikos>jruby -S gem list...

Application fails to dynamically _re_load JavaScript files

Hello people.. I have research about an issue and could not find a solution for it through normal JavaScript techniques (maybe there is but I did not find any). The thing is, my application loads ( inserts) JavaScript files whenever the user loads a section of the system. The problem comes when I try to unload ( removal) one. I've not...

using jquery ajax to load info from database

Problem I tried using the following // Start method 1 var grbData = $.ajax({ type : "GET", url : "http://grb.sonoma.edu:81/getgrbs.php", data : "start=0&perPage=3"}).responseText; $("#ajaxDiv").html(grbData); // End method 1 // Start method 2 $.get("getgrbs.php", { start : 0, perPage : 3}, function(data) { ...

jQuery ajax load() java script not executing?!

Hey guys, I've read several posts about this issue but i can't solve it. I am loading an html file into a div. The file i am loading contains a unordered list. This list should be expanded (a menu with submenu items) and closed. Therefore i need js. But unfortunately this script isn't loaded. Can anyone help me? Would be so great! Th...

importing an XML document

What I'm working on is a navigation bar populated by an XML document. I'm working from an existing navigation bar while I learn, and the existing bar has a menu, and when clicked each button has a sub menu. I'm trying to remove the submenu so that when you click the navigation bar button, you go to the address defined in the XML. So f...

jQuery post parameter to load

How do I pass the values of txtname and tel as variables to the .load??? $(document).ready(function(){ $("#add").click(function(){ $("#result").load("add.php", {name: #txtname}); }); }); The html: <p>Name:<input type="text" name="name" value="" id="txtname" /></p> <p>Telephone:<input type="text" name="tel" id="tel" va...

Pagination with special loading function?

I was searching for a script or at least a code snippet but haven't really made any progress. Anyway, I'm looking for a script that works like a simple pagination javascript but it should be accessable by linking from anywhere in the document and by calling it with the URL (e.g. on www.abc.de/default.html#thirddiv the third page of the p...

appdomain c++ c#

hello, when we write Assembly asm = AppDomain.CurrentDomain.Load(SomeByteArray); when SomeByteArray read from .net .exe all is ok, and when from c++, error. for this function is important using .net exe ? if yes please other way to do this. thanks ...

Shadowbox loads old href and not new href

I have a code that replaces href's using Jquery, .attr({ href : newpath }); and I am using Shadowbox. After changing the href and loading shadowbox, the shadowbox loads the old href instead of the new one. For example : <a id ="shadowboxlink" href="images/firstimage.jpg" rel="shadowbox">shadowbox link</a> then the jquery would be som...

In jQuery, how to load ajax content after a specified element

I have the following HTML: <div id="mydiv"> </div> I would like to load content using jQuery so it appears after my DIV. I've tried this: $("#mydiv").load("/path/to/content.html"); However, this ends up with this result: <div id="mydiv"> <p>content from file</p> </div> How do I get this result? <div id="mydiv"> </div> <p>conte...

Loading external post/content to a specific div (jquery, wordpress)

Hi, I've been playing around with the grid-a-licious theme, and found some really cool sites similar to the theme: ex. http://home.visuaal.com/ The question is: any idea on how the post contents were loaded similar to the sample above? When the user clicks on each box, the specific div expands and displays/loads the entire post. When t...

Dynamically loading posts with Wordpress

This helpful idea from Andy Gaskell supports 50% of my next question: I'd like to load posts dynamically with WordPress. Fetching them with Andy's function does work, but How do I bind the load to each and every one of the posts? Can I insert PHP generated content (post permalink, for example) to the JS script? Thank you. ...

Script goes ghost when dynamic content is loaded

After loading a PHP template (using jQuery's load function), this simple script won't make the DIV go away: $("#trigger").click(function(event){ $("#removeThisDIV").hide(); The HTML bit: <p id="trigger">X</p> Tried to remove other DIVs, before the load -- it works just fine. After the load, the script went dead. Ideas? Thanks. ...

loading dotnetnuke into memory in background

If there were no visits to the dotnetnuke portal for some time, depending on the host, the dotnetnuke is unloaded from server's memory. The first visitor that comes next is then forced to wait about 15+ seconds (depending on server's speed) in order to see the page. Dotnetnuke is a big framework but sometimes ends up serving low traffic ...

Actionscript 2.0 - Load SWF file(s) from different domain(s) and have access to the objects in them.

First off, thank you very much for your time and any help that you can offer. My question is as follows, I have two swf's: MovieA.swf, MovieB.swf MovieA is hosted off of a web server at WebsiteA.com MovieB is hosted off of a web server at WebsiteB.com WebsiteB contains a crossdomain.xml file, which allows access from WebsiteA, and to...

What application problems have you seen with a load balanced scenerio?

What application problems have you seen with a load balanced scenerio? I'm looking to learn from other peoples stories. The story that I learn the most from will win. ...

How to load some html and append to <body> with jQuery?

I tried the following: $.load("Views/chatBox.html").appendTo('body') is not working! TypeError: $.load is not a function EDIT:The answer should be only one line of code,that's enough,I think ...