5,277 Posted Topics
Re: You'll have to clarify your question/statement and be more specific as to what help you need. What have you tried, do you have any code? | |
Re: You have to ensure that the BIOS IDs configuered appropriately. Check the boot order/priority. | |
Re: When you right click and inspect the element, take a look at the line that diafol highlighted for you. Then, scroll the page up and down and you will see that the position changes from absolute to fixed. To do this, you'll need some additional javascript/jQuery to change the position … | |
Re: The advantage is that you treat them as a group as opposed to single items. | |
Re: Looks like you have a case-sensitive issue. Try... (.pdf exentension in lower case) http://www.jonvandesigns.com/PDF/VanDenEeden-Jon-Resume.pdf | |
Re: You may want to investigate this by looking at your network equipment. For example are you using hubs or switches? Do you see any indication there that there may be a problem. Or take a packet capture. Do you see abnormalities in the traffic patterns for example too many broadcasts, … | |
Re: Is it better than what..not putting it in a DMZ? Can you clarify what you are trying to design? You can establish an AD instance in a DMZ and/or just have member servers participate in the DMZ but there are extra security precautions that should be considered. Generally, if at … | |
Re: THe first thing that comes to mind is that when you have some type of link or button on your screen, if you want it to open a popup or show a div, you have to prevent its default behavior since clicking on these types of elements will cause a … | |
Re: It may be tough to just point you to a solution that does this specific thing you are asking for. However, assuming you have the server side stuff done, you can easily load a web page and have it refresh on a timer without having to reload the browser screen. … | |
Re: This answer is probably too simplistic, but I think if you apply some of the concepts of [Moore's Law](http://en.wikipedia.org/wiki/Moore's_law) you should expect that the technology will continue to double every 18-24 months. Take a look at this historically, was the cost of 1GB of RAM about $30 18-24 months ago? … | |
Re: Sounds like what you are asking is to set up a trial that expires? ![]() | |
Re: > rules to generate a good traffic for my blog which really makes a huge difference I think the most important thing is to develop content which your readers will find interesting and keep them interested. This generally results in your users sharing your content across social networks which inturn … | |
Re: I think it is more important for you to have the billing process defined before you start to develop your application. Also, with regard to storing data, you'll need to figure out what type of data you need to store and how the data is related. Then, the last phase … | |
Re: Is this code causing an exception? What's the error? | |
![]() | Re: Looks like its related to the pseudos...disabling the `display: table` style removes the space.  ![]() |
Re: Generally its in json format. How you specify it depends on what the server side method is expecting. For example: data: {key1: 'value1', key2: 'value2'} | |
Re: Hello and welcome. If I may ask... I see lot of people from India using the word "dear". Dear is not generally a word that fits in that context too well. I was curious as to what is being referred to in that case. Is it "friend" or something similar … | |
Re: >pls how can i install new windows without losing my files and pragrammes on it If this is a new version of Windows you want to install, you can attempt to perform an inplace upgrade. If you do a clean install, you will wipe the partition, format and write new … | |
Re: Just to clarify... What do you want to show for the link and what do you want to happen/where to go when clicked? | |
![]() | |
Re: Client side behavior such as moving an image element on the screen is accomplished using javascript. If you use jQuery, a javascript library, its even easier to accomplish. | |
Re: Yes, you can link to a page instead of the image file itself, then using server side code, code your response headers so that the image is downloaded as an attachment. | |
Re: Does this db need to be accessed directly by clients over the internet? If so, you need to host with a provider that has the option to expose the db. I know that GoDaddy allows this. There are various ways to get your db up there. SQL management studio has … | |
Re: A common approach to url rewriting in classic asp is a work-around. For this to work, you will need to have access to a custom 404 page. In other words, you will depend on IIS to send 404 errors to a custom page in your directory. Most providers have this … | |
Re: If the ASP function GetEmpFName and GetEmpLName are producing strings, then I would try... if($(this).val == "First Name") { availableTags.push = "<%= GetEmpFName() %>"; } else { availableTags.push = "<%= GetEmpLName() %>"; } | |
Re: pictures contain binary information so what do you mean by "into text"? | |
Re: >when you hover over a nav bar page link how can this be done? Can you be a bit more specific about what you are trying to design? You want a dropdown list within a navigation menu or you are just asking about how to build a multi-level navigation menu? … | |
Re: Hi Matthew, its a good idea to apply a "CSS Reset" so that you user agent's default styles dont apply. This will give you a more consistent display across different browsers.... So, if you apply a margin:0 to the body element, it will get rid of the left space. Also, … | |
Re: I actually had something similar I was working on a few weeks ago with the 301 redirect. I wasnt working with posted data (actually exception data), but in any event I had to implement a server side redirect instead using a 301 because i would loose the exception with the … | |
Re: >Does that mean that the issue is from the motherboard. hard to say based on the info you provided. Could be motherboard related, could power related if the device isnt powering on. >can I retrieve the information stored on the hard disk? If you open the laptop (screws should be … | |
Re: Could this be an issue with the video component(s) on your system, driver maybe? Anything you can recall that happened two weeks ago.. such as a driver update via Automatic updates. Does this happen to any other app? | |
Re: There is a publish option in visual studio. If you are developing web forms, you can just FTP your files to the directory where your web server is being hosted. This is fairly straight forward and hosting providers make it pretty easy. You can do this from visual studio or … | |
Re: Maybe you are referring to web development vs traditional desktop application development? | |
Re: The desktop that you connected to the Ethernet port should self configure on the network as a DHCP client. Assuming that you used the correct WEP/WPA key, the wireless client is connected as well. Make sure that if either of the two computers are running a firewall (Windows Firewall if … | |
Re: Do you mean an asp.net label control? No that really isn't the appropriate control to use. What are you trying to do? | |
Re: This is actually an HTML entity, specifically called "non breaking space". It creates space. Remember that browsers will always truncate spaces in HTML pages. You can use the ` ` entity to create spaces. | |
Re: What do you mean by moving pictures? Do you mean video or a picture that is moving across the screen? |
The End.