5,277 Posted Topics
Re: > The problem I have is that the form I wiant to show in the email shows up right on top of form and it won't reveal in email with the inputs displaying? I dont understand what you mean by that statement. > I created an and I can not … | |
Re: This must be something very specific to their system. From the Internet Router into your network is considered your LAN, but from the point where your router connects to their equipment is a whole different infrastructure, different protocols. I assume that they must adjust the amount of power on that … | |
Re: <img id="myimage" onclick="changeImage()" src="pic_bulboff.gif" width="100" height="180"> function changeImage() { element=document.getElementById('myimage') if (element.src.match("bulbon")) { element.src="pic_bulboff.gif"; } else { element.src="pic_bulbon.gif"; } } </script> In this example, there is an onclick event that is bound to the HTML image element with an id of "myimage". The you click on this element, the onclick … | |
Re: So based on what i am understanding about your description, the user can either make a selection from a dropdown list or manually input the the information in a textbox. You may want to consider disabling the alternate control. For example, if the user makes a selection from the dropdown … | |
Re: Have you tried to do any coding on your own that the members on this forum can help you with? | |
Re: If you are just starting and do not have the experience to develop the VB or C# code, you can also get this working through the Design view. On the second drop down, when you attach a datasource to this control, during the data source wizard, when you create the … | |
Re: Here is some working code you can adapt to your needs.... <h3>Content</h3> <button id="loginbutton">Click</button> <script> $(document).ready(function(){ $("h3").hide(); $('#loginbutton').click(function(){ $("h3").show(); }); }); </script> | |
Re: Without a link to the site or you posting sample code, it's really challenging to help you. | |
Re: What is the application? Take a looks at this link. Lists the various MIME types for IIS7: http://www.itgeared.com/articles/1028-allow-iis-to-open-various-file-formats/ | |
Re: To draw graphics without the additional plug-ins, you will use the HTML5 canvas element. To start learning how to use this element, you need to know HTML and JavaScript. | |
Re: So, if you are using a form, can you just switch the text box for a combo box? Maybe i'm not clear on the problem you are having.. | |
Re: You can also try setting up a USB bootable stick. | |
Re: You are at the right place. Just post your questions concerning those topics. | |
Re: Thanks for the iphonetester.com link. that will be helpfull. I am starting to include work on sites that require both desktop and mobile targets. | |
Re: nicely done. so you need any other help or you are good now? | |
Re: Actually, just to clarify, the hidden attribute has no security features. Anyone that has access to the system can display hidden files. If you are interested in securing files and folders, make sure that the drive is formatted as NTFS and assign the appropriate security permissions. | |
Re: Ensure that your computer recognizes the usb keyboard, and has hte DVD drive set to boot with 1st priority. then stick the Windows 7 media in the DVD drive and boot hte computer. You need to boot from the DVD media. During the installation, you will have the opportinity to … | |
Re: Try usign this approach... Vertically aligns inner div and centers text. <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Example document</title> <style> #outer {background-color:#AAAAAA;height:250px;width:250px;display:table} #inner {background-color:#E0E0E0;display:table-cell;vertical-align:middle;text-align:center} </style> </head> <body> <div id="outer"><div id="inner">Hello!</div></div> </body> </html> | |
Re: Can you elaborate on what you mean by "does nothing with my document"? In the examples that were provided to you, it should be evident that what is being done here is accessing the content between the starting and closing tag of the element with an id = "a". innerHTML … | |
Re: Ok, first, you got to give it more than one minute between the time you first ask for help and then ask again. When submitting a form, you do not actually need to incorporate JavaScript, at least not in this example. Secondly, are you using more than just HTML? Server-side … | |
Re: So, the ContentPlaceHolders are there for the pages that will use the MasterPage as a template. I am not familiar wtih that treeview control, but I assume what you want is that when you click on one of hte items in the control, you want to show specific information. I … | |
Re: If you have no work experience, theres not much you can do about that in your resume except not to focus on work experience. Do you have any awards or certifications that you can include in the resume? Any interships? If you can afford to do some internships, take whatever … | |
Re: Are you sure that you are checking the correct public IP address? On the device on your private network (192.168.0.24), did you verify that the target port (80) is listening? In addition, make sure that the local firewall on that target computer is not blocking port 80. | |
Re: Try this... Place the code in the .cs page within a subrouting procedure. I see that your sub is using a response.write. Not a problem. Just call that procedure from your aspx page, where you need the results. Like this.. `<% mySub() %>` Where ever you place this code in … | |
Re: Are these laptops in a domain. Possibly pushed down through policy? | |
Re: There could be a process running that the shutdown sequence is unable to force to stop. See if this happens when the computer is boot into Safe MOde, then shutdown. | |
Re: remove the hard drive from that computer, plut it into another computer. The easiest way is to have a USB to IDE adapter so you dont have to open the target computer. The hard drive will be available from another system where you can just copy the data that you … | |
Re: You can always purchase a network print server which essentially connects the printer to this device via the USB cable (or parallel for older printers) and the print device would either connect to the LAN via wired Ethernet or Wireless. | |
Re: I beleive what is happending is that you are not including a doctype in your header.php code. The first line should be.. `<!DOCTYPE html>` This ensures that IE enable standards mode and renders correctly. The basic structure for your HTML code should be.. <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" … | |
Re: > but I can't pull up a web page when I disconnect my ethernet cable If you disconnect the Ethernet cable, how do you expect to access the network? > When I did the setup the netgear adpter installtion wizard did not ask for ip address or linking of an … | |
Re: If you want to wipe the drive clean and install a new OS, simply configure the BIOS settings to make your CD/DVD drive have the #1 boot priority. Then, when you boot your computer, make sure that you have the OS media in the optical drive. The computer will boot … | |
Re: As pritaeas suggested, ASP.NET is hosted on Windows servers running IIS. What error message do you receive when accessing your ASPX page? | |
Re: I hope that you really didnt expect that you would post this and someone would provide you with the answers. In addition, the questions reference a network simulation that you were supposed to complete. If you give it a try and come back with some specific questions, you are more … | |
Re: Try this.. SELECT * FROM Employees emp1 WHERE NOT EXISTS ( SELECT 1 FROM Employees emp2 WHERE emp1.job_id = emp2.job_id AND emp1.salary < emp2.salary ) ORDER BY salary DESC | |
Re: Moving objects between OUs should most definately not cause domain membership issues or IP conflicts. The only impact that you should expect is that objects will inherit new group policy objects linked to the target OUs. Take a closer look at the OU structure, schedule a maintenance window, follow your … | |
Re: Hello and welcome. Normally introductions are posted in the Community Center > Community Introductions forum category. You posted in the Hardware and Software > Networking category. | |
Re: It sounds like the versions you are referring are not the SQL version, but the server operating system versions. For example, there is no SQL 2003. So I am assuming Server 2003 --> Server 2008. If you have the same version of SQL installed on both server, all you need … | |
Re: here is an example of the code to set the height of the div with an id of "layer". Keep in mind that when you get the width, you get just a value. When you assign that value to the height, you need to add the "px" string. <!DOCTYPE html> … | |
Re: I have an example with with code on how to build a multi-level navigation menu. Feel free to use the example and adapt to your needs. http://www.itgeared.com/articles/1420-css-multi-level-navigation-menu-tutorial/ |
The End.