5,277 Posted Topics
Re: Take a look at these tutorials on the IIS.net site that deal with streaming live video. http://www.iis.net/learn/media/live-smooth-streaming | |
Re: Do you have an example of a post where your code doesnt format properly? | |
Re: how about storing the URL info in an array, then use a loop to iterate through the array members, calling a function (passing the URL param) that executes the ajax process. | |
Re: You can use the substr() method. echo substr($string, 0, 30); http://us2.php.net/substr | |
Re: I wish I would not have missed this thread, otherwise my recommendation would have been to bring up the new VPS in parallel, then simply cutover when the new VPS system was stable and validated, especially since you indicated that additional costs were not of concern. For anyone else reading … | |
Re: Take a look at this similar thread. It may have information you are looking for: http://www.daniweb.com/web-development/threads/466413/making-a-website-with-a-changing-backgroung | |
Re: Have you taken a look at the source code on the site you found that example on? I suspect its simply a label or span element above each input element. | |
Re: >Help Me Fast, I am waiting for the answer Please...some patience... You've been a member for a few months now, you know that someone that has experience in the question you are asking will come around to help you as soon as possible. Posting that you need help really fast … | |
Re: Hello Bhavish, Your post is very broad and generic. If you are having trouble with a specific part of your web app, post your relevant code so we can help you. If you are asking for someone to develop the code for you, can try hiring a developer in the … | |
Re: Your HP software, if installed, would help you easily locate HP printers on the network. As long as the laptop and printer are on the network, no USB cables are required. | |
Re: Ajax is basically javascript code that allows for sending data to, and retrieveing data from a server without having to reload the page using the XMLHttpRequest object. JQuery is a javascript library that contains Ajax related methods making it easier to use. | |
Re: What error are you encountering? Is login.aspx located on the root folder? Try... window.location.href("/Login.aspx") | |
Re: Maybe a good feature request could be that when a thread is solved, the text changes to "#### marked the ..... solved." | |
Re: Hello and welcome. I don't see what you have described as a waste of time either. If anything, it has given you exposure and is helping you move towards your goals. | |
Re: Make sure that in your BIOS, your SSD drive has a higher boot order than your HDD. Your removable media should have a higher boot order, such as 1. restart the computer with your OS media in your DVD drive. start the installation of the OS. When the time comes, … | |
Re: How can we help if you haven't provided anything relevant to work with? | |
Re: Did you recently make a change to the CSS properties? Maybe the page is cached on the client side? Try clearing the cache... Does this happen on other PCs as well? | |
![]() | |
Re: You simply need to parse the string. So for example... `Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36` In this string, you can tell that the user is running Windows 8.1 because "Windows NT 6.3" indicates that the OS is Windows 8.1 | |
Re: Are you attempting to replace the existing picture or place the new picture next to it? | |
Re: It would probably make sense for you to have two tables. Table 1 is there to define your products and the second table would be used to store quantities. The second table would also have a column that would be used as the foreign key. You build a relationship between … | |
Re: ASP.NET is going to take your asp.net code and generate the appropriate HTML code and sent back to the browser. When you open the page within the browser, right click on the page and select view source. Cut an paste the HTML code that was generated so we can see … | |
Re: I had similar issues when I upgraded... Regarding scaling/zooming but the fuzziness you are describing sounds odd. | |
Re: If you are getting some type of file locked related issue, try restarting the computer. Also, I am not familiar with xampp for windows but you don't have some type if uninstall executable or xampp lists in Program and Features as installed? | |
![]() | |
Re: Take a look at spin.js. Ever since I came a cross that, I stopped using animated gifs. You can use jQuery onclick event on this button to start the spinner. | |
Re: No success booting to safe mode? Rather than trying to repair, have you attempted a clean install? | |
Re: Consider using a foreach loop. Example found: http://phppot.com/php/php-form-validation/ ![]() | |
Re: Visit the laptops manufacturer website. It sounds like the controller is not being recognized during set up. So for windows 7, you can supply the driver during setup to be able to access the storage devices on the controller. | |
Re: The typical anchor element would look something like this... <a herf="index.php">Home</a> What is happening on the home page that you need to know what page you are on? In other words, are you using a generic PHP page and generating content based upon some query string parameter? I'm not understanding … | |
Re: Unless you have a password rescue disk, there really isnt a supported way to recover the password. There are quite a bit of third party tools that allow you to boot up (typically using a Linux based OS on CD or USB) and reset the administrator password. A quick search … | |
![]() | Re: That stinks. I haven't seen any mass problems with the Dec updates affecting PCs but these things do happen from time to time. If you've attributed this to a software change like updates, you should be able to do a system restore back to a restore point in time prior … |
Re: You can easily read from a file. Use [StreamReader.ReadLine](http://msdn.microsoft.com/en-us/library/system.io.streamreader.readline(v=vs.110).aspx). In your loop while reading, you can make a decision on which table to upload your data to. Since your pattern is predictable, you can use a variable to hold a count (counter) to make the decision on which table to … | |
Re: There's a working demo here on jsfiddle that you can take a look at and adapt to your needs. This allows you to display without actually uploading. http://jsfiddle.net/LvsYc/ | |
Re: Your first issue is that you need to correct line #7. Change it to... `var email = document.getElementById("xemail").value;` | |
Re: Open a command prompt and type ipconfig /all. Post the results for your NIC. | |
Re: The flow of your sample code doesnt make sense..also, there's a window.prompt() method, but not a document.prompt() method that I'm aware of. What are you actually trying to accomplish? here is an example of how to use a while loop. var x = 0; while (x < 10) { document.write("The … | |
Re: I dont typically use the homepage either. I jump on the forum categories immediately. I do like that hiding the intro/fred for logged in members is a good idea. | |
The End.