[Solved] How to do a game working in browser [closed]

A basic requirement would certainly be Javascript. That’s what the “J” in AJAX actually means. You basically need two things: the client-side code dealing with the user input, sending requests to the server, dealing with the responses, managing all the graphics; and the server-side system handling requests triggered by the client code and providing adequate … Read more

[Solved] Execute several methods [closed]

Run async another method, which execute several methods synchronously methode1(){ webBrowser1.Navigate(“http://test.com”); } methode2(){ webBrowser1.Navigate(“http://test2.com”); } public void BatchRun() { methode1(); // run sync methode2(); // run sync after Method1 } // … Action toRun = BatchRun; toRun.BeginInvoke(null, null); // Run async 1 solved Execute several methods [closed]

[Solved] Prevent user from copying URL from address bar [closed]

you can use history.pushState() to set the url bar to something that doesn’t give away secrets. for example, run this in the console: history.pushState(null, null, “https://stackoverflow.com/”); After running, it now looks like you’re on the stack home page, even though you are still on /questions/26537657/prevent-user-from-copying-url-from-address-bar/. it won’t stop hackers, but it will prevent naive users … Read more

[Solved] find the firmware in javascript

If you expect that your clients will have Flash installed (95%+ of the world does), you can use a Flash movie to check the flash.system.Capabilities object. It has lots of information you might be interested in. If you’re trying to find it on an iOS machine, then obviously this won’t work since it’s not going … Read more

[Solved] I want to create a folder navigation in PHP [closed]

Listing folder contents can be done in numerous ways using PHP, from a very simple glob() cmd to a complicated(?) recursiveIterator. Example of glob. —————- $dir=realpath( $_SERVER[‘DOCUMENT_ROOT’] . ‘/path/to/folder’ ); $col=glob( $dir . ‘/*.*’ ); print_r( $col ); 1 solved I want to create a folder navigation in PHP [closed]

[Solved] show title of the page in tab of browser

you can follow default routine for displaying title in ASP.NET MVC. in _Layout.cshtml <html lang=”en”> <head> <meta charset=”utf-8″ /> <title>Your SiteName | @ViewBag.Title</title> . . in other pages just set ViewBag.Title. for example login page @model LoginModel @{ ViewBag.Title = “Login page”; } 0 solved show title of the page in tab of browser