Use stringVariable.Replace(".", "_") since you don't seem to know what a regular expression is. stringVariable.Replace(".", "_") will return a new string with "." replaced with "_" in stringVariable,...
If by "messed up" you mean it looks pixelated (even when reducing the size), that depends entirely on how the browser decides to render the image. Certain browsers such as Safari resize the image...
XMLHttpRequest creates an entirely new request, separate from your page. This means it doesn't matter what form(s) you have on your page (which wouldn't make sense anyways - how would it know what...
For an MMORPG, A.I. is quite simple when compared to other game genres (especially FPS and RTS.) I'd still go for an FSM, yes, but since an MMORPG server has to handle a great deal of actors at once,...
JavaScript is contained to the web page it is currently on due to security reasons. Even access to the clipboard is limited in JavaScript. You can save your variables in cookies however, if what you...
May I ask what adjustments you made? I tried your queries above exactly as they stand, with the exception of not putting them in a stored procedure but rather running them as separate batches (first...
You've got machine, customer, category and hire occasion. The machine information isn't actually included (it is only referenced), so I haven't listed it as a table below:
Generally FSM are predictable and not very suitable for adaptiveness. The reason I suggested it is because they are simple enough to understand and implement. If you're going for more complex,...
Well, that's pretty vague information and poor names for tables/columns. But assuming that "T2" holds a list of items that should be shown in "T3" (excluding items not in "T2"), this query should do...
The timestamp column is generally returned as the amount of seconds since the Unix epoch. (Edit: Actually, if you only return the column without any functions or operators, it should display as a...
I'd go for a finite state machine (FSM) because they're easy to work with. Basically you give your actor an initial state and let it switch between states depending on what it senses. Say you've got...
The problem with using .capcha as an extension is that IIS wouldn't know where to send the request (unless ASP.NET was set up to catch all non-handled requests.) It would merely return a 404 error...
My suggestion is a pretty nasty way of doing it if it's a distributable library you are making because the current page will be executed once for each image requested (until the point your control is...
Yes, of course it will. Now I'm not sure what you want to accomplish. You know that you can't branch a web request right? It can only ever return one file, which in your case will be either the...