5,277 Posted Topics
Re: Provide a sample of the code you are having trouble with so we can take a look and help you. | |
Re: If your domain controllers are healthy, you only need to take action once. All DCs in active directory are considered masters so replication would handle the changes. | |
![]() | Re: How much memory does your system have? The more memory the larger the pagefile. That could be one reason ![]() |
Re: you need some type of scripting language, such as PHP to make the connection. HTML isnt enough. | |
Re: I'm not a PHP developer, but this is what I would envision for the process.... 1-Have the user create a Host (A) record in their dns zone file.. 2-execute a subroutine on the PHP server to perform a DNS looked for this hostname. If the result of the lookup is … | |
Re: If you believe its related to your PHP files, there is nothing really needed with regard to the link provided. Can't see your PHP code from there. Have you looked at the PHP files? | |
Re: if you apply `position:relative; top: 0.1em`, it lines up. I'm sure there are other approaches as well depending on what you are trying to achieve. | |
Re: Modify your web.config in the way like your second example so you can see what the error actually is that's causing this problem. | |
Re: How is the printer connected to the computer? via USB cable or network cable? Do you have the drivers/software installed on the computer? What have you tried already? | |
Re: i'd agree that you can address your concern by managing the data in a database. I'm not aware of any simple, easy type of database that you can just connect to a front end application, especially since you want to publish this to the web. if you just needed a … | |
Re: Yes that is correct. When the name resolution process occurs, those name servers are listed as being authoritative for the zone. If the name sever cannot satisfy the request it send back that information to the requestor and the process will stop. The requestor doesn't simply discard that response and … | |
Re: In your sql query, you will use a where clause to match the date. The question is how much of the date do you want to match? the month, day, month + day, including the exact time? More info on [DateTimePicker](http://msdn.microsoft.com/en-us/library/aa231249(v=vs.60).aspx) If you want to find records for the same … | |
Re: In this line, it should be hover, not hower. `.montage-block:hower #block1 ` `-webkit-transition` would target Safari and Chrome, what about other browers? What is top for here: -webkit-transition: `top` .3s ease-in-out; | |
Re: Are you trying to update the value client side? If so, you can use some javascript. here is an example... <li> <a href="#" >Asian Art Museum</a> ( <span id="distance1">0</span> mi ) </li> <script> var dist1 = document.getElementById("distance1") dist1.innerText = 3486.4 </script> | |
Re: Did you go into device manager? is a network adapter listed, or unknown device? you likely have to provide windows with the driver which you should be able to download from the ASUS site. | |
Re: Yes, i would think if you are interested in securing your passwords in the database table, you wouldnt want to store the plain text equivalent. What would the point be using hash and salt then? You would store the hash/salt value in your db. When you authenticate a user, you … | |
![]() | |
Re: Based on your description, i'd say that your database would have multiple tables, but not a table dedicated to each month or type of bill. You can do this with one table ("expenses". The table would contain a primary field that identifies each record by ID number, you would also … | |
Re: how about providing the relevant form html markup just to have it handy so that we can see what we are working with. ![]() | |
| |
Re: When faced with these nasty viruses and trojans, have you considered just wiping the hard drive clean and just re-installing the OS on your computer to ensure 100% that you have removed all of the known and unknown malware you have installed? | |
Re: You need a JSP script that will receive the data either via HTTP GET or POST. Do you want to interact with this JSP page/script via postback or behind the scenes using AJAX? | |
Re: there's alot of people here that can help. Post your relevant code so we can see and relate to what you are asking help on. | |
Re: If you don't have access to server side scripting (PHP, asp.net, etc..) then do you know if you can use javascript? If so you can load jQuery and easily add HTML elements from a single source. | |
Re: Did you first verify that the page opens as expected when you try from the guest itself so you can rule out a problem with the web server/site. | |
Re: i've used pdfobject.js from #3 on that list. works well. | |
Re: You are asking about tips regarding being a teacher? Well, 1... its in your best interest to know what you are talking about before standing in front of a room full of people. 2... try to bring real world examples in to your classroom. When i taught for many years, … | |
Re: Not a good idea because XP is no longer supported. No more security patches will be released. In any case... Boot from the windows XP DVD. You can wipe out the existing partition during the setup process. | |
| |
Re: Take a look at this DW thread. Examples included. https://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/463470/ajax-blog-system | |
Re: I would recommend the use of panels if you want to handle this server side instead of client side. If you simply use a style like display:block/none, all of the content will actually be sent to the browser and the browser itself is showing or hiding. When you use panels … | |
Re: If you apply the ClientIDMode to Static, you don't have to worry about these funky asp.net I'ds changing. They will stay the same when rendered in HTML. | |
Re: Wish granted. You **only** had his grasp of mathematics while he was alive. You lost it as soon as he passed. I wish I could become invisible at will. | |
Re: yeah, the 404 error isnt going to work on any browser. Just verify the path or make sure that you actually copied the file to that location if you are developing locally and hosting online. The browser console is also showing 404 errors for some images that arent at the … | |
Re: I think a as is trying to put some distance away from Win 8 by skipping 9. The preview that is out is a "technical" preview. They are a bit away from what the actual end product. | |
![]() | |
Re: I think its fairly easy to implement an instance of "Full Calendar". http://fullcalendar.io/ its based on javascript and you can even connect it to a Google Calendar so its easy to add events and display them on your web page. However, it does require some knowledge of html and javascript. … | |
Re: You should consider using Google analytics. Its free and has all of the features you are asking for. http://www.google.com/analytics/ | |
Re: Also in your styles, .input means you are trying to apply the styles to elements with a class of "input". In your styles "." will target classes while "#" targets IDs. If you want to target all input elements it's just input { ... } |
The End.