5,277 Posted Topics
![]() | Re: Hello and Welcome. Your questions are contributions as well. Others out there have the same questions. |
Re: hello and welcome. I also came from a strong Sys Admin/Network Administration background. About a year or so ago, I began having an interest in Web Development. I also picked up ASP.NET/VB first without having a strong web dev background. My suggestion to you is to start with the basics … | |
| |
Re: Can you be more specific about the tests that failed? Hard drive, memory, etc..? | |
Re: The problem seems to be related to your use of floats. For exmaple, the logo div is set to float left, but the navigation is not. Keep in mind that when you use floats, you take the elements outside of their normal flow. Improper use of the float style will … | |
Re: Do you mean that you do not know what your ADSL username and password is? contact your provider.. Or do you mean being able to log onto the router itself? | |
Re: Can you explain what you mean by "form isnt made"? I do not see any form related stuff in the code you provided. | |
Re: You can download a 90 day eval copy on TechNet. http://technet.microsoft.com/en-us/windows/windows-8.aspx | |
Re: Your problem appears to be with the first few rows of the table. especially these rows... <tr> <td style="text-align: justify;" rowspan="2" valign="bottom"> <p><strong>Eil.</strong></p> <p><strong>Nr.</strong></p> </td> <td rowspan="2" valign="bottom"> <p style="text-align: center;"><strong>Pareigų (pareigybės) pavadinimas</strong></p> <p><strong> </strong></p> </td> <td rowspan="2" valign="bottom"> <p style="text-align: center;"><strong>Etatų </strong></p> <p style="text-align: center;"><strong>skaičius</strong></p> <p><strong> </strong></p> </td> <td colspan="5" valign="top"> … | |
Re: Have you contacted the hosting support number to maje sure this will work with their datasource? ![]() | |
Re: I assume that you are looking for a driver? If you cannot locate the driver from the vendor's website, there are other third party sites, such as driverguide.com. However, I am generally not fond of downloading software from external sites. | |
Re: Are you sure you don't mean ASP.NET? While there are still quife a bit of ASP sites out there, new development is ASP is not common. | |
Re: Try this instead...on the form element. Then place your javascript validation code in the validateForm function. `<form action="process.htm" onsubmit="return validateForm()" method="post">` | |
Re: If you manually key in the URL in a browser window, the page will open as any other. If you call the login form from an existing page, one option is to use javascript to open a small browser window that's customized... #JavaScript Window.Open# `window.open(url,name,features,history)` # HTML Example - Popup# … | |
Re: If you are sure that the hardware is connected correctly, I would suggest as the next step is to boot into the CMOS/BIOS setup utility to see if the motherboard can detect the storage devices. The problem here is that you are powering up the system and no bootable media … | |
Re: That's nice, but what is it that you would like to discuss regarding Microsoft Windows? | |
Re: Well, the main purpose of this product, Varnish Cache, is to provide web acceleration. You can think of this as a reverse proxy service. When HTTP requests come into the hosting infrastructure, they pass through the varnish cache first. This infrastructure will attempt to respond to the requests using information … | |
Re: Hello mubarka, If you want to build an RSS feed via ASP.NET, I have sample code that you can freely use and adapt to your needs. The code is written in vb.net, but if you need it for c#, its easy to translate. Hope this helps. [Create an RSS Feed … | |
Re: I would agree. You can easily develop the email client in vb. You can also do the same with regard to the SMTP services, but with since there are already established SMTP services on the Internet, I would recommend you just go with that option. With this option, you dont … | |
Re: Have you considered using the javascript switch statment? I prefer it when having more than one case to match. For the case that is a match, display the text. You could probably assign each color a number and store the questions in an array so retreival will be easier. | |
Re: Can you clarify what you are asking. "2 inputs 60 user LAN" doesn't make much sense. | |
Re: This may be an issue related to name resolution. It would be helpful if you had a diagram of your network and elaborate on your DNS configuration. | |
Re: I am by far a sql injection expert, but from my understanding and experience, the vulnerability is not really SQL related. The issue is with the way you collect the user input and pass that input within the query sent to your sql data source. So i would say yes. | |
Re: As you may be aware, the most important thing at this moment is to not write to that drive any longer. I wouldnt even plug it into another computer. If these files are important, you may consider to work with a vendor that specializes in data recovery. If that is … | |
Re: To clarify... ASP and ASP.NET are a bit different. For you to be able to implement an asp.net website, you do need IIS to be running on the web server. In addition, the web server, must be configured properly to service asp.net (.aspx) web pages. Make sure that your files … | |
Re: My first thought is do you have to do this serverside? Have you considered client side javascript? Wut are the requirements for this task? | |
Re: Can you elaborate on exactly what information you are trying to retrieve? If you do not include the id in your query, you will get a distinct list of titles. However, you want to know the ID of each distinct title. So, if you add in the ID column in … | |
Re: A quick search online results in an example I found that appears to be inline with what you are asking about. Take a look at this: line25.com/tutorials/how-to-create-a-pure-css-polaroid-photo-gallery | |
Re: Its a professional social network. LinkedIn connects you to your contacts and helps you exchange knowledge, ideas, and opportunities with a broader network of professionals. | |
Re: Correct... for IIS7 to support https, you need to install a certificate on the web server, just like you did on IIS6. | |
Re: You could store the files on one PC then share the resource for the other two. However, this requires that this one PC be turned on for the other two to access it. Another low cost solution is to purchase a network capable hard drive, rather than a dedicated server. … | |
Re: Regarding the first question, my response would have been that it was related to the file associations. The most common cause of this problem is when a user right clicks a file and clicks on "open with" and they choose another program while leaving the check mark enabled for the … | |
Re: There are a few techniques you can use to center an image. Text-align would work, but i generally use the technique of styling the image as a block element then applying a left and right margin to auto. Here is an example. In your stylesheet... img.center {display: block; margin: 0 … |
The End.