5,277 Posted Topics
Re: Is this webhosting that you are referring to? If so, its easily accomplished with Load Balancing (LB) technologies. For example, most appliance load balancer appliances will host front-end virtual IPs and manage traffic to your back end real servers. If a server, service, or whatever the LB is monitoring goes … | |
Re: Do you have this site online so we can take a look? | |
Re: So what is happening that you are having second thoughts about your hard drive backup? There is no additional cost, its simple, and sounds like a solution that's been working for you? With regard to optical or tape, do you have a need to keep the data of today archived … | |
Re: When you installed the new OS, you needed to have deleted existing partitions. This option is a available in the early stages of the installation. Otherwise, if you install to an additional partition, the result will be a multi-boot capable system. | |
Re: The file maybe locked by another user. You can disconnect any connected users via the computer managment admin console, or rebooting the server wil force the disconnections. | |
Re: You havent posted any code, nor have you indicated what problem or errors you are encountering. No one here is a mind reader, nor are we here to do your work for you. You need to put a little more effort if you expect community members to take the time … | |
Re: Exactly what does dead mean? Any errors while booting? Have you tried to access the drive using another PC (USB-->IDE)? | |
Re: I would tend to beleive that the non-windows systems are not necessarily more secure or less vulnerable. Since Windows desktops dominate the market, itself only makes sense from a malicious users perspective to develop malware targeting Windows systems. The other reason, again in my opinion, why Windows is faced with … | |
Re: A typical denial of service attack will try to over subscribe the server. One approach is to start a TCP connection and not complete it. By opening thousands of these connections, the web server's resources are consumed to a point where the server cannot service clients. This type of attack … | |
Re: Also keep in mind that any time a Windows system has a change on the NIC (such as with a new IP), a gratuitous ARP packet will be broadcasted on the subnet. Meaning that it will send out a special ARP packet even though no other host is requesting it. … | |
Re: Just to elaborate some more on Share and NTFS permissions since it was brought up... It's best practice that when you create a Share, go ahead and apply Everyone:Full Control (keep reading). Then restrict the access using NTFS permissions (the access control list). This works best because when you apply … | |
Re: Your first link is correct styling the red text. However, its a hyperlink so the other text is not of black color by default. For example, this would work... <a href="URL"> <span style="color:black;">Black text</span> <span style="color:red">red text</span> <span style="color:black;">black text</span> </a> | |
Re: Gimp is a good alternative if you don't want to pay for software like photoshop. I'm not a gimp guru, but I have used it occasionally and have t found a situation where the product was limited. | |
Re: You can use Visual Studio do develop your PHP pages, but you use web forms (.aspx) pages to do that. as Pritaeas mentioned... you cannot mix the two. This is because if the page is saved as .aspx, then when requested, the asp.net engine will process and the PHP code … | |
![]() | Re: > The symbol in my computer section for hard drive for this one hard drive has changed. What do you mean by this exactly? Can you post a picture or some other descriptive information.... any errors? |
Re: Partition ing your drive is a good practice for many reasons. In your case, one partition for your OS and Apps, and another partition for your data (files, pictures, music, etc..) can make it easier to manage your data. For example, you can easily backup your data in this config. … | |
Re: There seems to be some property and value issues with your code above. For example, your #header starts with a sting of "solid #999". That isnt a property so what are you trying to do there? Also with the floats, i am familiar with the propert and the values of … | |
Re: You'll need to provide a bit more info... For example, what web server application are you running? On what OS? Where do you see this error? | |
Re: How's your client-side web dev skills? I only ask because when I got interested in server side scripting (in my case ASP.NET) and started learning it before picking up the client side HTML, CSS and Javascript. So I ended up getting exposed to the server side before the client side. … ![]() | |
Re: Yes you can use the compressed air inside the case. If you do use compressed air, take the case outside before you use it. Works great on keyboards. | |
Re: There are quite a bit of methods and its difficult to guide you without seeing any code. However in general, you can apply different styles to the same types of elements by targeting them via CSS selectors. For example, you can assign unique IDs to each element and target them … | |
Re: Sorry, can you clarify your question? SAP with ASP.NET... ?? | |
Re: What wasn't a success? Keep in mind that all of the processing happens server side and when its completed, the results are sent back to the browser as HTML. If you want to create some type of real time progress/status bar, you'll need a client side solution that receives data … | |
Re: There are a variety ways to do this such as pure CSS, or JavaScript. Just look at the source code when you are on the page (right click-view source) in your browser, or use your browser's dev tools. An easy way to do this is with the pseudo class "hover". … | |
Re: One of the best things about ASP.NET is one of the worst as well. ASP.NET makes it too easy to develop web applications. When I first was interested in web development, I downloaded Visual Studio and in just a few hours I had my first dynamic web application running on … | |
Re: A great place to start a portfolio with is doing work for non-profit organizations (I believe that is what pritaeas was referencing). Schools, churches, community organizations are always looking for help. The benefit for you is that you are exposing your services while building your skills. In many cases, you … | |
Re: If you are referring to the event that windows is prompting for elevated priviledges, you will need to log in as an admin, then change the prompting behavior for all users. There's no other supported "bypass" process. It's a security measure. | |
Re: You already indicated you are using no-IP.com. I haven't used that service, but if it provides you with a free hostname and dynamic DNS services then you should be good to go. In your HTML page, you would reference the no-IP hostname:8081 | |
Re: Tables are not really the appropriate use for this but I understand why you are choosing it... Due to the ease in creating a grid type layout. Anyway, keep in mind that tr create rows and td are for cells. So something like this should work... <table> <tr> <td style="vertical-align:top"><b>Gender</b></td> … | |
Re: Hello and welcome. it appears that you are a new member.. > Hello am impressed to have u now i just want to learn about networking and web design If you have a question about computer networking and/or web design, you should go ahead and post a specific question in … | |
Re: Once you get a better understanding of the HTTP codes... If you are learning about this because you are managing your own webserver, you could also modify the HTML files that your webserver is using for each of these codes and further customize them as needed. For example, provide more … | |
Re: A typical computer power cord will work fine. Nothing special is required for this type if rack mount server. If you are supplying the server with 120v get a standard cord. If you are supplying 240v then buy the appropriate cable. I suspect your going with the 120v. The 240 … | |
Re: So what's happening with your code? Is the page load block you added not triggering? Are you at least getting a postback? Seeing the rest of your code would be helpful. I agree with Begginnerdev that this approach is not the best choice. | |
Re: Your javascript won't really interact with your datalist control. Keep in mind that asp.net code is converted to HTML and sent to the browser. So take a look at the HTML that's generated by using the browser's "view source". If you know at least a little bit of JavaScript, that … | |
Re: If you are just learning about placing ads on your site, you'll find several options. Partnering with Google and setup in an Adsense account and integrating the banners on your pages is very easy. Te part that is not so easy is generating revenue. For the revenue that you are … | |
Re: That's just not right. Its amazing that someone that runs a company would do that do you in this era with all of the social media that's available. Getting a bad review or negative reputation online is not good for business. Not sure where you live, but you may have … | |
Re: If you developed your website properly with respect to relative paths, the site will work with any domain name. What I mean is that say you reference an image, your source attribute should reference the relative path such as "images/img1.png" instead of "http://www.domainName.tld/images/img1.png". With regard to IIS, what question do … | |
Re: The main problem you have here is that you decided to add the runat attribute to the "loading" div, then you also set the visible attribute to "false". This visible attribute is not the same as display="none". With your code, when you run your page, you will notice that if … |
The End.