I've started looking into HTML web database storage for some Chrome extension I'm working on, and it made me wonder - Who should be cleaning abandoned webdbs? As opposed to desktop apps, there's no uninstaller for a web site. And as opposed to regular cookies, webdbs can be much larger than just 4KB.
I can imagine some browsers or add-o...
I would like to get some tips from our SO users about serving static files on a website like JavaScript, CSS, images and Flash files faster. Any useful tips?
...
Hi,
I have this code somewhere in my plugin:
$('tr', $this).hover(function(){
var cur_color = null;
cur_color = $this.css('background-color');
$this.css('background-color', options.tr_hover_bgcolor);
}, function(){
$this.css('background-color', cur_color);
});
Above, $this refers to wrapped set or table as an example. The code ...
Possible Duplicate:
ASP.NET vs. PHP
Hello!
i want to know what the advantages/drawbacks of each of asp.net and php according to your experience .
thanks
...
Hi,
I am a beginner to web development and ASP.NET. I am creating a web application (not public, so SEO, bookmarking etc. is of no concern) with the typical layout of header on top, Navigation on the left, content on the right. I want the content to update without the whole page reloading when selecting something on the navigation bar. ...
I have a website that I am making and I was going to implement a perl script into it. This script goes to another page gets a .csv file and reads in the lines and parses out what I need. The problem I have just ran into is that my hosting server apparently does not allow custom CGI scripts on an MS server. I chose the MS server so I coul...
Im making a web game. It runs relatively in real time. Buildings produce a certain amount of money each hour. The amount of money varies from player to player based on what they own.
I need to make a php script that calculates how much money to add and then insert it into the DB every hour, this would have to be ran for every player.
...
I know similar questions have been asked, but I'm not sure about the answers (and I can't easily test all of them), so before I go crazy continuing to search, I want to ask: Is there an easy way to crawl all the pages on a website and check them for broken and invalid links automatically? Prefereably I'd like a solution that does not re...
I'm looking for some advice in dealing with UI, specifically web UI, where a multitude of different settings and toggles change what is displayed to the user. The settings are tied to the user, so each user has a unique experience (depending on a variety of factors). The existing approach of using a plethora of conditional statements; ob...
I'm trying to implement Redirect After Post for the first time in ASP.NET. Assuming my business objects may take several seconds to a minute to complete, in what order, and what syntax do I use?
For example:
User POST's
Server issues Server.Transfer or Response.Redirect
Server does something that takes a minute or two Thread.Sleep
...
I am on a Mac running Snow Leopard which includes Apache. I want to run a local copy of Apache for web development. To do this so far I have had to set my full path for the document root and the rest of the paths for things like ErrorLog and PidFile.
What I would like to do is create an httpd.conf which work across multiple developer wo...
I will try to be as brief as possible, please stay with me here
"A.jsf" -> managed bean : bean
"#{bean.list}": will take us to B.jsf
<p:growl id="msgs" showDetail="true"/>
<h:form id="myform1" enctype="multipart/form-data">
<p:panel header="Upload" style="font-size: 11px;">
<h:panelGrid col...
Hello everyone,
I am very curious on how to do this. I want a PHP script to look at the string after the URL link and echo the value.
For example, if I entered:
"http://mywebsite.com/script.php?=43892"
the script will echo the value 43892. I have seen this in most websites, and I think it will be a very useful to have in my applica...
I am developing a website for a client (ASP.NET, T-SQL). It is a data-entry website allowing many of their users to login and manipulate records in the same database.
There are instructions (basically a list of string) throughout the form, telling the users what to do for each section; these instructions are themselves present in the da...
What are the security implications of websites accessing database views instead of using stored procedures? The views in question are only being read from; not written to.
Edit
The applications in question are ASP.Net MVC 2 using the Entity Framework (v.4).
...
I have a set of LI elements with overflow propety set to hidden by the
jCarouselLite plugin. What I would like to do
is to scroll the jCarouselLite'd element in order to scroll to the
LI element I want, since I have it configured to
show only 3 elements.
Looking at the html code generated by the plugin, I can see:
<ul ..>
<li ..s...
Currently there exist package like gonzui (example of the implementation here)
for doing source code search.
Is there a similar package that does the same thing except for simple file search.
Basically I have two list of files for file type A and file type B. When the user type a word
in the search box, all files (in "gz" format) wit...
I have a JSP form. My requirement is to get this form's data and create a java beans object on the server side.
Example: my form has fields like Name, SSN, EMAIL & Phone Number
public class Test {
long ssv= 1282199222991L;
long phone= 4082224444L;
String email = "[email protected]";
String name="abcdef"
}
From the knowledg...
I have a database from which I want to expose data.
Ideally I would like to be able to just add a URL into some other web page and that URL would then call the correct datum using the web app I use to interact with the database.
Would a web service be the best option?
...
Hey,
we notice some strange behaviour on Internet Explorer 8.
Sometimes our Page (Intranet) starts loading but is not going to finish completly, the IE8 Loading spinner is running forever and the JavaScript of the page is not executed. HTML / CSS is displaying as it should. We use JavaScript (Prototype) to do some stuff and this is not ...