5,277 Posted Topics
Re: If its for personal use, you may want to check out Blue Coat's K9 application..its free. It does a very good job of blocking web sites automatically based on the categories you set, or you can manually add the sites you wish to block. http://www1.k9webprotection.com/ | |
Re: In a case like this, if the budget is tight you have two options. Have someone that has extra parts to help you troubleshoot, or just scrap it. In this case, I think that the computer freezing and no longer working was coincidential. While an update can fail and cause … | |
Re: My recommendation to you is to consider just wiping the drive and reinstall the OS. Usually, a fresh, clean install results in a responsive pc once again. For one, your drive will no longer be fragmented Depending on your needs, that may be good enough. If you wanted to upgrade … | |
Re: You may want to rethink this or make a business case to you organziation. If there are strict policies in this organization, are you sure they are going to let you export data from this DB into an unmanaged XML file? Even if they do, you would have to build … | |
Re: Hello sentongogray. Your question/posting is extremely general and I am doubtful, that you are going to get someone to be able to walk you step by step in creating a complete website. You are more likley to get help if you break this up into different parts, work through the … | |
Re: SEO is not a one time event. It is a continuous process. You need to monitor, measure, and adjust for the ever changing conditions that may affect your site on the web. | |
Re: So you want to for this page to be "inserted" into another page? You should be able to do this easily with an iframe. The iframe element's syntax is as follows: `<iframe src="somepage.htm" ></iframe>` iframe attributes: * src: * height: * width: * name: (deprecated) * id: * longdesc: * … | |
Re: If the purple bar across the bottom is managed by JavaScript, or other code used to detect the browser version, I would assume that the if.else statement in that code is defaulting to a configuration without the purple bar. I would also assume that by simply updating the code to … | |
Re: Can you elaborate on what your question is. I visited the link, and the page came up, was able to scroll up and down. Didnt see any issue with the layout. | |
Re: You are in the correct forum category with regard to questions about AJAX. | |
Re: This is a duplicate post. please stick to one post... http://www.daniweb.com/software-development/cpp/threads/423489/creating-log-file-in-header | |
Re: Logical partitions with multiple pagefiles on the same physical disk isn't going to help you increase performance. Which application/process is using up the CPU? | |
Re: You posted this question in the Java Category? Are you looking to integrate Java into your website design or are you asking about just how to design a website? Please clarify...website design has many factors and considersations such as do you have static or dynamic information to display? Where do … | |
Re: > Google Analytics captured visits to the pages that were not referenced in the newsletter, in addition to the ones that were. Is it possible that some of the visitors where just opening a browser and typing in the URL incorrectly which would explain why you are seeing "unintended" pages … | |
Re: Try... Protected Sub btnDownload_Click(sender As Object, e As System.Web.UI.ImageClickEventArgs) Handles btnDownload.Click <<Your Code>> End Sub <div> <asp:ImageButton ID="btnDownload" runat="server" alt="dessoft download" src="../img/fdespiddownload.png" Style="width: 120px" OnClientClick="return ConfirmSave()" /> </div> | |
Re: From the target's perspective, the spice of the connection is te proxy. You are anonymous up to that point. You are not anonymous from the proxy's perspective. Whether or not you are being logged or whatever other action is being taken at that proxy is controlled by whoever manages the … | |
Re: 1) yes. The typical approach used these days is to stream a virtual desktop to a thin client. VMWare and Citrix are the two most common vendors used for this technology. In this example, you have a thin client at the desktop. The thin client has a very small OS … | |
Re: First determine whether or not you can resolve the host name from a workstation on the LAN. Check your workstation's IP configuration. Is it configured to point to the internal DNS server that is hosting the test.dev zone? If so, from a command prompt type NSLOOKUP. Hit enter. Then type … | |
Re: Yes, choosing the correct data type will help your database perform/scale better since you would not be assigning unecessary resources to store data. For example, in with regard to male and female, Boolean works well since you only have two choices. Boolean is generally used for true/false. So your field … | |
Re: I would also suggest that you have one patient table. Within the patient table. Then you can have a seperate inpatient table and another outpatient table that contains the ID from the patient table. In the inpatient and outpatient tables, you would just have details related to the in or … | |
Re: duplicate post...already answered in your other post... http://www.daniweb.com/web-development/web-design-html-and-css/threads/423404/how-to-load-a-page-in-a-div-tag | |
Re: The first thing to determine is if the keyboard has malfuntioned. If you have a spare USB keyboard handy, unplugging your current keyboard and plugging in a new keyboard will quickly help you determine whether or not its a keyboard issue. Keyboards do fail from time to time. I know … | |
Re: Hello Ross. Updating the computer to XP SP 3, is generally a good idea. Unforutnately, something went wrong during the update and is causing you this pain. If you go to the device manager, do you see the wireless network adapter listed? If so, right click uninstall. Then rescan for … | |
Re: Are you in school/college where you may have resources there to help you find an Intership opportunity? | |
Re: This must be on an IIS server. As far as I know, you cannot run asp.net on any other non Microsoft web server. Make sure you go back and validate your config. I would start by making sure that your IIS is configured to serve asp.net pages. It may not … | |
Re: Your first task is to take care of subnettting the network ID of 201.20.20.0. If you do not know how to calculate this manually, there are a lot of online subnet calculators. Just to get you going, if you apply a /28 (255.255.255.240) mask, you will be left with 16 … | |
Re: We definatley need more information to help you. If there is a language barier, use online translator tools to help you put your thoughts together. | |
Re: Why dont you remove the hard drive from this older system? It is most likely a parallel ATA Drive (PATA). Then just get a hold of a USB to ATA connector (about $20.00 in a computer store), then plug the USB/hard drive connector into your computer so you can access … | |
Re: Start with some good books. Also there are quite a bit of sites on line that have JavaScript tutorials you can reference, including online HTML editors so you can quickly edit and see the results of your code. The key here is to strengthen your programming foundation. Once you understand … | |
Re: div style="background-image:url('imageFile.gif');" I would recommend that you first edit your image so that the image's dimension (width and height) are the same as your banner size. Otherwise you will skew the pic. | |
Re: Can you clarify what your question is? What do you mean by.... > make this link alert t0 times | |
Re: You'll need third party tools to resize existing partitions. Make sure that you back up your data before resizing a partition. | |
Re: Your web.config and html file look fine so far. Are you developing this in Visual Studio? If so, Visual Studio comes with a development web server so if you right click your index.html file the local web server should start up and it should display your page. If it does, … | |
Re: Here is an example of JavaScript code you can use to validate a form: <script type="text/javascript"> function validateRequired() { var x=document.forms["form1"]["name"].value; if (x==null || x=="") { alert("Name cannot be blank."); return false; } } </script> <form name="form1" action="process.aspx" onsubmit="return validateRequired()" method="post"> Name: <input type="text" name="name"> <input type="submit" value="Submit"> </form> | |
Re: Do you want to move text to vertically align within an element such as a div, {vertical-align:top}, or do you want the element that contains the text to move to the top of the page, {position:absolute;top:0px;left:0px;} | |
Re: I would recommend that ulyou wipe your hard drive and install Wondow 7 x64 on the host system. If you need to run te 32 bit version for some reason, then run it as a virtual machine. This way you can stil have both operating systems (and more if you … | |
Re: What sgunnery is suggesting is that you reset the wireless router back to it default settings. Another thing you can try just to ensure that this problem is strictly related to the wireless connection is to connect the laptop via the wired ethernet connection and test to see if there … | |
Re: The booster requires that the WiFi is already available. You mentioned no WiFi in te room. You need at least a weak signal for the booster to "boost" it. If you want to validate that you configured it correctly, move the booster to a location that has a weak signal … | |
Re: Check the router's documentation online. You may have a chance if possibly a newer firmware provides this extra functionality. | |
Re: You need to elaborate a bit more on your question. What is it you are trying to do with the mouse and keyboard technology? | |
Re: You need to focus on the code that executes when you click on the image. Look for an "onclick" event, or if this is written in asp.net, look for an event in the script code section, or code behind. This sounds like where the link URL is being created. | |
Re: If you are running a 64bit host OS, and have plenty of RAM, that is going to help you have a better experience running the VMs. Yes, you can have the different VMs participate on the same virtual network, different private networks, host only networks, and on the bridged network … | |
Re: In general, you can float the element to the left and have a right margin of 0px. This depends also on the elements that sorround the target element. For example, the style applied would be float:left;margin-right:0px. | |
Re: These consumer based routers can fail after time. It sounds like the power connector inside the router may be siifhtly damaged since wiggling it causes an issue. With regard to the first issue, again maybe the wireless radio is starting to fail and generate erodes where a reboot temporarily clears … | |
Re: RAM issues may prevent a system from booting. No POST when you boot? You indicated that you were able to get into te BIOS. If you at least get to the POST process, to rule out a motherboard issue, boot up using a Linux Ubuntu CD. If it boots motherboard … | |
Re: Rater than double clicking te batch file run it directly from a commas prompt to see the error. It may require elevated access. If so you should be able to right click te shortcut and run as administrator. | |
Re: Before you ugprade your PC, consider what components you may want to spend more money on (within your budget). Your PC is going to be as fast as the slowest component, which is normally your secondary storage (i.e. hard drives). The difference in cost between an average hard drive and … |
The End.