5,277 Posted Topics
Re: Which part of basic networking are you interested in? Its a pretty big field. I have put together a set of basic networking tutorials. However, they are very high level and only meant to be an introduction. I would highly suggest you get your hands on some additional resources, such … | |
Re: Check to make sure that you didnt set the property --> CausesValidation="False" | |
Re: Do you plan on generating the next number in a sequence? What's the format of the employee ID that you need? | |
Re: Keep in mind that when you apply the float property, the element is taken out its normal position. It sounds like you are trying to create a grid of some sort. Maybe create a table? While the purpose of a table is to display structure data, it would be an … | |
Re: Does you router provide this firewall filtering capability? If so, if you know what the destination domain name is or IP addresses, you would create a rule to prevent internal hosts from accessing the destination IPs on the specific ports that this game requires. | |
Re: @hotelsinger- thanks for providing the update. I am saving this for a future need... | |
Re: jQuery is just a JavaScript library. The JavaScript syntax should be : object.style.transform="rotate(45deg)" | |
Re: Do you have your site hosted? The providers generally include access to some sort of database platform. | |
Re: I think that it's a normal reaction that most people would be annoyed by someone reviving such an old post. However, I could be mistaken, but i believe I've read some of Dani's responses that she is OK with it when the continued posting in the thread is still relevant … | |
Re: @LastMitch..the term "hack" in this thread, I believe that it simply means to add extra functionality to the product. The term hack or hacking has a negative meaning because hacking has been used for malicious purposes but that is not the original meaning. During the 1990s, the terms "hacker" and … ![]() | |
Re: I can't see the source code from my tablet but it sounds like the issue was found. In any case assigning a width to a table row is not supported. Make sure that your elements have unique ids. | |
Re: That's hard to say based on your description. By the way, you may consider posting your question in the appropriate forum category so that you can get the best responses and so that people interested in these types of topics can learn from the discussion. So based on the error … | |
Re: An easy way to center content on a page is to add a div element, assign it a width, then apply a left and right margin. So with regard to the example that designershiv provided, add a div element after line 268 in the code you provided. `<div id="wrapper">` Then … | |
Re: It may seem cheaper to buy a new printer, but the ink that comes with the printer is usuall a "starter" pack. These "starter" packs usually contain 1/4 of the ink that is included in the "XL" packs. @bastrop52, unforutnately, if the cartidges are missing, the printer wont allow you … | |
Re: Connecting the modem to a UPS device would probably resolve the issue. However, some UPS devices provide power from their batteries 100% of the time which is what you want vs the inexpensive ones that only supply power from the battery when power is cut off. Do some research. You … | |
![]() | Re: It sounds like there is an authentication service enabled on the proxy. If that is the case you will need to provide the appropriate credentials. Is this proxy managed by someone else? Check with that person. |
Re: Do not click on the links. Blue Coat reports these sites as: *Scam/Questionable/Illegal and Spam Scam/Questionable/Illegal* A note to anyone else that may be on this site regarding questions about malware... **Dont post** hyperlinks to the source of malware. If you want to refer to the site, at most, post … | |
Re: >The point is to make a worthwhile contribution. My following comment is not meant to point out any similarity but only to make a point. A few months ago we had a member (now banned) who was making dozens of posts daily in Thoughts of the day. Most of the … | |
Re: If you want to donate processing power/time, consider the SETI@home project. http://setiathome.ssl.berkeley.edu/ | |
Re: So if the device is plugged directly into your computer, and your computer recognizes it as a drive, the permissions you assign in the security tab will only apply to users that are interactively logged onto the computer. Even if you change the permissions, they are not going to "stick" … | |
Re: Private IP addresses are not routable on the internet. When you RDP to that system on the network, you must be accessing a public avaiable IP. This public IP is mapped to the private IP (192.168.0.40) at the edge router/firewall using a port forwarding rule. for example in the case … | |
Re: if you want to hack someone's email, this isnt the appropriate forum. If your email was hacked, then you should immediately change your password and report the incident to your email provider. | |
![]() | Re: There is no true way to be anonymous. In a top/ip session there is always a source and destination IP. While the destination may see the proxy or VPN service instead of your ip, the service you are using has a record of which ip initiated the connection. So in … |
Re: First, if you are looking for an accurate and quick reply, you should post in the correct forum category. With regard to your question, Windows XP was the last OS that used the I386 folder structure. | |
Re: So the title of the post is regarding checkbox disabling. That's easy to do with JavaScript. here is an example.. <script> function disableElement(){ document.getElementById("#chkBox1").disabled=true; } </script> Your description sounds like you want to enable a button when a checkbox is checked? There is another thread on this site that seems … | |
Re: Have you applied the latest service pack for Office? Or uninstall and reinstall office? | |
Re: Based on those results, I'd say you have a pretty nice connection. This computer that is lagging...is it a wired or wireless connection? | |
Re: How would you "tag" the text to be styled a certain way? where you considering wrapping the text a certain way. For example, if you wanted bold text.. `<b>This is Bold</b>` If so, you can do it this way, upload the text as you see it in this example. Then … | |
Re: I also use Robocopy quite a bit but I am not sure that this is the best tool for what you are trying to accomplish. There is a few advantages that a traditional backup application can give you over robocopy. 1) A backup job will backup the files from source … | |
Re: You have a few options at this point... 1) If the hard drive no longer has the recovery partition, contact HP for further assistance. They may be able to ship you the media. 2) Purchase a legitimate copy of Windows (or other operating system), wipe the drive and install the … | |
Re: I have used this approach several times. Adapted from: http://ryanfait.com/resources/footer-stick-to-bottom-of-page/ <!DOCTYPE html> <html> <head> <style> * {margin: 0;} html, body {height: 100%;margin: 0;} .wrapper {min-height: 100%;height: auto !important;height: 100%;margin: 0 auto -100px;} .footer{height:100px;background:#ababab;} </style> </head> <body> <div class="wrapper"> <p>Page Content</p> </div> <div class="footer"> <p>Footer Content</p> </div> </body> </html> | |
Re: You'll need to use the FindControl method. Here are two threads from the asp.net and msdn site that I think will help you. [asp.net thread](http://forums.asp.net/t/1520323.aspx/1) [msdn thread](http://social.msdn.microsoft.com/Forums/en/vbgeneral/thread/bd6a7f4c-7b62-4027-86d1-d536311924ae) | |
Re: Without going into SQL Mgmt Studio to give this a try myself, I beleive that in the first example, the order by is simply being ignored because the default ordering is exactly what you are tyring to do with the first example. Try moving the order by PublishFromDate into the … | |
Re: You are on track with your analysis. The 169.254.x.x address is an APIPA address. Without getting into the technical details, a Windows system will self assign itself an ip in this range when it is unable to negotiate an address with your router. You could try applying a static ip … | |
Re: I've read your post and have no idea what it is you are talking about. Are you asking a question, or need help with something about your computer? | |
Re: Two things that come to mind.... DataNavigateUrlFormatString would be ... http://maps.google.com/maps?q={0}. The data will be filled from the DataNavigateUrlFields. To replace spaces for +, I would handle that part in the SQL query. | |
Re: >Context.Identity.User.Name This is generally used for intranet web sites where you enable Windows authentication on the website in IIS. This allows you to grab the user identity (user credentials used when loggin on to the computer). If this is a public facing website, this isnt going to be useful for … ![]() | |
Re: If you want to center a main div, that is a good start. I would suggest that you give it a try. It is going to be unlikely for someone on this forum to produce the structure for you. You are free to start and if you run into issues, … | |
![]() | Re: Have you considered just using the "Find and Replace" tool? You would just tell word you want to find " the " and replace it with " THE ". Tell the tool to match the case in the advanced options. ![]() |
Re: Post the revelant code that you've done so far and define exactly which part you need help with that is not working/generating an error. | |
Re: You'll need to clarify the question a bit regarding... > i want to get my own pc's ip adress Do you mean that you want to capture the IP address of the visitor accessing your website? If so, that's pretty simple. Add a label, textbox or other similar control and … | |
Re: Can you clarify what it is you want for your website? Do you have any code you need help with? | |
Re: The issue appears to be that the div with the id of "rightcolumn" is within the div with an id of "content", which is OK if you "wrap" the comment divs within their own div. I assume that is what you mean to do because your CSS refers to an … | |
Re: Which part isnt working. I tried your code and when you click on the image, the form action executes. | |
Re: Ok, so there are a few ways to handle this. You could set up VPN services on both servers and configure port forwarding on each router so that you map the public IP address to the private IPs for the servers. However, I would do this only for VPN ports. … | |
Re: Hello, I am not familar with that model, but when you power the computer up, you should be able to hit one of the function keys (F1, F2, F11, etc...) to start the CMOS (BIOS) configuration. If you do not knwo which key it is, check the vendor's website for … | |
Re: There are mainly two high level components we can discuss...the physical and logical network. You first need to have some information about what you need this network to do. | |
The End.