5,277 Posted Topics
Re: Once you restore your computer to the default image, the first step should be to go and get SP3. http://www.microsoft.com/en-us/download/details.aspx?id=24 After you apply SP3, visit the MS site again and update IE to version 8. After that, go to the Microsoft Update site and apply the remaining patches. There should … | |
Re: Blue is simply the codename for Windows 8.1. | |
Re: > The user would like to be able to at least get a copy of his files etc before trying to format and install again. In the very worst case scenario, you can always open the PC, remove the hard drive, plug it into another computer using a USB<-->PATA/SATA connector. … | |
Re: The information you are looking for may be on HP's support website for that model. there is not standard for recovery disks, so it may or may not delete the existing partitions prior to reconfiguring new partitions on the hard drive. If it was my drive, I would back up … | |
Re: Do you have sample code or a link to the site online so we can take a look? | |
Re: > how i can change this ip to dns when i tape www.abc.com -->redirect me to www.abc.com/folder1/app.php DNS is not built for redirection to a direct path within the URL. These rediretions occur at the web server/web application layer. | |
Re: > I don't want to use the built in DHCP role as i find it confusing. Is there something about the built-in DHCP server service that you need help with? I'd recommend you try to overcome the obstacles. It's really easy to install and manage and it integrates with DNS … | |
Re: Of course, with the use of style sheets (CSS), you can change the look of the input element. Without manual styling, the browser will applying its own default styles. That's why input elements may look a little different depending on the browser. | |
Re: It would be good if you can start by providing what you've done so far. | |
Re: Well the snippet above shows you comments that indicate the purpose of the code. You are missing the width and height variable declarations and assignments. | |
Re: The `<blockquote>` element specifies a section that is quoted from another source. You can also include the cite attribute to specify the source of the quotation. | |
Re: > localhost or not, the machine must have a mail server installed and running or SMTP simply won't work. The configuration of the web application, in this case Wordpress, would have the ability to set up SMTP settigns? yes/no? and if so, you should be able to use a local … | |
Re: Depending on the motherboard, some of these on-board NICs may not be as reliable as other brand names. Hard to say, but what I would try is to remove the device from Device Manager and let Windows rescan for new hardware. It will load the drivers and if you have … | |
Re: In addition to the information that's already been presented in this thread, I think a visual aid would be helpful. To better understand padding and margin, you should understand the concept of the CSS Box Model. All of these attributes affect the overal size of the actual space taken up … ![]() | |
Re: Yes, HTML is the most basic component in web development/design. | |
Re: Here are some examples using jQuery selectors... $('p') // Selects all paragraph elements $('#one') // Selects element with an ID = 'one' $('.nav') // Selects elements with a class = 'nav' | |
Re: Are your clients at least picking up the SSID being broadcasted? | |
Re: So, the first thing to clarify is that the .accde format is not Excel. That file format is used by Access. If you want to take existing spreadsheets created in Excel 2003, you should already be able to open them in Excel 2013. | |
Re: So, you really dont have control on exactly what is displayed in the search results such as the description, but for the hyperlink where your site's name is displayed, that information is taken from the content of your page's `<title>` element. You can do a search on Google for SEO, … | |
Re: > Is it acceptable to have the button before the text of the paragraph? So from an HTML standards perspective, that will validate. So is that what you mean by acceptable? | |
Re: So, when you run the page, take a look at the source view so you can see what is actually happening. NOt sure if you are already aware, but the ASP.NET controls are processed by the ASP.NET engine and pure HTML is sent back to the browser. You will notice … | |
Re: The web site configuration is going to have something related to "default files" (depends on the web server and the admin tool you are using). In any case, the point is that when you type in your URL such as domain.com, the web server needs to know which file to … | |
Re: Based on the log entries above, your router should be dropping those packets because they are being flagged as a potential attack, and dropping them. I wouldnt worry about it because DOS attacks against residential users are generally rare as there wouldnt be a good reason to cripple your connection. … | |
Re: You dont need to have a height on the table cell or the attributes you assigned. For the image, simply add display:block, with a margin:0 style to your image. It will remove that extra gap. <td> <img src="xxxxx" width="600" height="11" style="display:block;margin:0"> </td> You can validate this by removing the height … | |
Re: looks like an end of semester/year project... you know better than to ask for someone to post a solution. | |
Re: The HTML inline frame uses the element `<iframe>`. What exactly do you need to know about its use? | |
Re: > it is easy to use or not? Everything tends to be easy once you learn how to use it. As t_thakar mentioned, you do need to have a bit of JavaScript knowledge if you plan on incorporating AJAX into your projects. In addition, if you do get into JavaScript … | |
Re: Great explanation... In addition just for some additional clarity, JavaScript and JAVA are completely independent. Also developed by different people. The only similarities are Java in the name and the syntax is similar. | |
Re: I'm not intimately familiar with this model, but in general there are two ways to reset the BIOS password. If there is a battery on the motherboard that is removable, go ahead and remove it. Wait a minute and put it back in. If there is no removable battery, there … | |
Re: It sounds like you are typing this into some type of editor that has a spell checker? You can either add "lol" to the list of a covetable words/dictionary or turn off the auto correct feature. | |
Re: The geekspeek part if the code is not native to asp.net. Is appears to be a custom class that contains properties and methods. The response.redirect is a subroutine used to stop the processing of code and redirect the user to another page. | |
Re: A keylogger is generally considered as malware because it is a program that runs as a service in the background, typically unknown to the user that is using the computer. A keylogger program's purpose is to record the user's keystrokes on the keyboard (and some programs will record a screenshot … | |
Re: What was the problem and how did you fix it? | |
Re: With HTML alone, its not possible. You need to have access/include some scripting. | |
Re: This could be easily done with some server side scripting and a database? I think it would be worth your time to learn how to do that?? What you are trying to do doesn't seem to be very scalable. | |
Re: What do you mean by binary tree? Do you mean a tree view? If so, visual studio has a treeview control. Or there are client side tree view js/jQuery generators. | |
Re: So I assume your looking at the page's source view since you have included the HTML elements in your example. As pritaeas mentioned, the browser is not receiving all of the credit card numbers. It's actually getting the asterisks from the webserver so they data is not sent in transit. |
The End.