5,277 Posted Topics
Re: I am not familiar with what you are trying to accomplish, but its clear that in your code, lines 17-21 will never execute because run will always equal to "true" prior to getting to line 17. | |
Re: > I get a bit twitchy when I click on a shortened link as I have no idea to where I'll be taken I feel the same way, I tend to stay away from these links. It makes me feel that someone is trying to hide something from me. It … | |
Re: You install the av program while logged into the PC. Where you tell the av program to extract its contents for it to run has no bearing on what the av program is able to do. it doesn't matter if the av program files are installed on either drive. Those … | |
Re: Your wireless provider may not allow unsolicited inbound traffic to your HSDPA device. | |
Re: >I mean, is it possible to let people access website in HTTPS mode and send encrypted data? If your site is being accessed via HTTPS, that means you are encrypting the data in transit using digital certificates. Good old HTTP transmits data in plain text. If you capture HTTP packets … | |
Re: >How do I display the input from that person and not someone else's input data? This is confusing. >100 people submit and 100 people need to view their data; How do I differentiate between all these people and make sure each person sees their own data and not someone else's? … ![]() | |
Re: Based on your description, it sounds to me like what you want is space around the body_panel divs. If that is correct, padding is not the correct property to use. You need to use margin instead. update line 14 in your CSS sample above to be `margin: 5px;` It helps … | |
Re: If you are setting up a new domain, creating the first DC on a VM is probably not a go or idea unless you have a production VSphere that's fault tolerant, highly available. If that VM system is unavailable, your domain is unavailable. Anyway, you could use vmplayer if this … | |
Re: If all of the data is included on the page at download time, you can use javascript/jQuery to show/hide data on the page. Otherwise if you have to retrieve data from the web server, you'll probably need some additional help from some server side scripting to introduce logic on handling … ![]() | |
Re: >so i'm guessing it has something to do with the netgear router or its settings. Your netgear router may simply not be running a telnet server service. Have you checked its documentation? | |
Re: I see that you have asp.net controls in your sample code. So, actually the easiest way to do what you need is to use a `<asp:RadioButtonList />` instead of independent radio buttons. Then use a `<asp:RequiredFieldValidator />` control to ensure that one of the items is selected. I found example … | |
Re: Can you provide more information? how is anyone supposed to figure out what to do with the title and code you provided? A more detailed description of the problem, what you are trying to accomplish, etc.. will likely get you more help. | |
Re: You didn't mention what server side scripting language, so I'll just provide a reference in case its asp.net that you are working with. Good reference: http://msdn.microsoft.com/en-us/library/ff648339.aspx | |
Re: You are correct that setting the authentication to "windows" is not going to work well for Intenet users. Windows authentication is best for an intranet for networks that run Windows operating systems. If you are going to have one web application, secured by forms based authentication, you'll force both your … | |
Re: The only two series I'm following at the moment are: * Game of Thrones * Walking Dead >Judge Judy I dont follow that show, but I love that lady... | |
Re: I generally go to the person's profile page when I want to endorse them, but it does seem that if you use the "pay it foward link" in your own profile, the list of suggested "endorsees" is displayed in no particular order. ![]() | |
Re: So, your code as it stands now will run the effect when you click on the "run effect" button, then it fades away because of this section of your code: $( "#effect" ).show( selectedEffect, options, 500, callback ); As you can see, you are have a reference to a callback … | |
Re: Yes, that is because float takes the divs out of the normal flow, but you can use the clear property to help you with this problem. See this example so you can expand from it.. <!DOCTYPE html> <html> <head> <style> body{ background-color:#08a2c0; } #body_main{ width : 95%; margin-left : auto; … | |
Re: There really is no way to surf "anonymously". The closest concept is that you can use a proxy server on the Internet to "hide" your IP from the target system. The target system will record the traffic coming from the proxy server, rather than your system. Keep in mind that … | |
Re: It is the architectural pattern that separates an application into three main components: the model, the view, and the controller (MVC). Its not specfic to ASP.NET, but there is an ASP.NET MVC. [http://msdn.microsoft.com/en-us/library/dd381412(VS.98).aspx](http://msdn.microsoft.com/en-us/library/dd381412(VS.98).aspx) Learn more about ASP.NET MVC --> http://www.asp.net/mvc | |
Re: In Windows, you are able to connect to more than one SSID. You can have your computer configured to connect to both SSIDs automatically. the DLINK Wifi can be set with a higher priority so when you are in range of both wifi networks, you connect to the dlink first, … | |
Re: Does this happen with any other PC on your network? If not, its likely a problem with your PC. Try updating the NIC's device driver. Have you tried a different NIC? | |
Re: If you change name servers for your domain then you have to create those additional records within the DNS zone on the new name servers. | |
Re: If you are really interested in preparing for you CCNA, a good CCNA book is needed along with a Cisco router, or router simulation program. In addition, there are exam simulators you can buy that will help you prepare for the exam. I think if you try to "wing it" … | |
Re: Hello, what a conincidence that you posted a link from a video that i published on youtube.. lol.. this one --> http://www.youtube.com/watch?v=nQhFbEPlRsU You found me again here on DaniWeb! lol anyway... That video explains how to enable NAT on RRAS but not for internet clients accessing internal resources. It is … | |
Re: They this instead. <a href='#Achievement'>'Achievement Titles and Rewards'</a> | |
Re: When you say vertical, you mean by grabbing the left or right side of the browser window and changing the width of the window? | |
![]() | Re: Here is another alternative... If you name your pictures from 0-11 (Jan is 0, Dec is 11), then you dont even need the array...Of course this is assuming they are all .jpg files. This also lets you update the picture without having to worry about the name. <img id="pics" /> … ![]() |
Re: If you have the user submit a form and on that form, you are collecting the IP address, then yes...it's the public address the user is coming from. I say public because you could have a scenario where is user is sitting somewhere connected to a wifi network and what … | |
Re: How do you address the first point? Think about the tools needed for an IT administrator to manage a remote office. the other questions are giving you clues as to where to place the server roles. If you arent familiar with the roles, the placement is not obvious. The second … | |
Re: so when you say you have a column, I assume that you are presenting the data in an HTML Table element? I dont see this as a PHP or SQL issue/question. i think a viable approach is to handle this client side. If you are a familiar with jQuery (a … | |
Re: Have you tried your SQL query directly in the SQL management studio? It looks like you have quite a bit of spelling error in their. If that is how you spelled your tables and fields it is fine but I'd double check to make sure | |
Re: For a web application that will service 300 users, you really do not need anything over and beyond what the operating system will require for hardware. Any modern CPU that supports with the appropriate memory and storage will be fine. Of course, for the best experience, a fast processor, an … | |
Re: A virtual private network, or VPN is used to create a secure connection (tunnel) over an unsecured or untrusted network. A VPN connection is generally referred to as a tunnel, because the packets that are sent between the VPN end-points are encapsulated. From the point of view of the two … | |
Re: Please refrain from posting the same question multiple times. Since you included more information in this thread, we will keep this one active. | |
Re: >why did it fire today, which is the 9th of the month? Doesn't `5 10 */4 * *` this mean run every four days, not every 4th day (4, 8, 12, etc..) of the month? So if you ran the job on Jan 1, it would run again Jan 5, … | |
Re: I had this bookmarked from some time ago because I found this for someone else with a similar request. I have never had time to look into this personally, but would be interesting in knowing if it would work as described. JavaScript Interface Library for Microsoft Access EDIT --> updated … | |
Re: >inform me about some platform of learning html 5 What do you mean by platform? You can think of HTML5 as a standard. HTML is simply markup and if you develop HTML5 pages, you are following rules and guidelines. To become an expert, I would recommend getting a hold of … | |
Re: So it is easy to authenticate users in ASP.NET, but when the user is redirected to the other site, how do you plan on making sure the user was previously authenticated? Why are you not considering consolidating into one web site application? | |
Re: I've used syntax highlighter before, see this link. video tutorial on that page. There are a lot of different highlighters out there on the net that you can choose from...some better than others for what you need. http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-how-to-add-syntax-highlighting-to-any-project/ | |
Re: it would help to see your HTML markup rather than the PHP code to see what is actually rendering in the browser. Do you have this page online? | |
Re: If you recently installed a service pack on your OS, this type of folder will be created in the %systemroot% folder/subfolder. The service pack installation process normally deletes this type of folder when the process has completed. If it doesnt, these folders are OK to delete, but before you do … | |
Re: At first gland I see that you haven't applied top and left CSS properties to the cover div. should be top and left set to 0. | |
Re: If you are going to have multiple rows and one function, you have to somehow figure out what row you are on when within the function. This way you can correctly get/set the values for the other input elements in that row. Here is an example... <?php $defaultrow = 3; … |
The End.