5,277 Posted Topics
Re: I'm not familiar with the Page.Style approach, but if you want once you have the file name that you read from the disk, you can create the link element dynamically in the head section of your document. Here are two examples. The first is typically used for creating the link … | |
Re: > you have to "brute force" the password... ophcrack Deft links provided in post above... not easy but will do it for you. We are talking about the BIOS password, not the user accounts stored on the Operating system. >So far, no such luck! As far as I'm concerned, unless … | |
Re: My suggestion... make 100% sure that you backup the template by downloading a copy to your local computer before you make any changes. If you make a mistake, you can easily import your saved template. | |
Re: The master/slave configuration is used for parallel ATA drives using the older IDE interface. So if you want to plug two drives in IDE0 for example, one drive would be set to master and the other slave. However for PATA drives, if you have two and you also have two … | |
Re: Without your code, not sure, but I would start by suggesting using the focus method. document.getElementById('elementID').focus() | |
| |
Re: > I have seen in the past that when you change name servers can take a while. When the DNS record is changed, it will take no longer than the Time To Live (TTL) setting on the record. Prior to making changes, if you lower this value to as low … | |
Re: So, I am not clear on exactly what your issue is, but based on what I read from your post, i assume that you want to add 10,000 when the checkbox is checked, and subtract 10,000 when you uncheck it? correct? Here is a modified demo with more than one … | |
Re: If you are asking about the yellow outline that some browsers such as Chrome applies to an input element, apply this style: input:focus { outline: none; } | |
Re: Href on line 5 is incorrect just with a quick look. I'd have to check the rest when I'm by a PC. | |
Re: Your site looks better from my mobile. Although the menu bar doesn't line up exactly under the big center pic. ![]() | |
Re: If you want to center content, wrap the content within a pair of opening and closing div tags. Apply a width and left and right margins. For example...style to apply: #divCenter {width:1024px;margin:0 auto;} | |
Re: It seems to me that all of the absolute positioning you are doing is the cause of the issues. Any reason for the use of absolute positioning? If you are trying to create space between elements, you should be using padding and margin for better control of the flow of … | |
Re: @LastMitch -- "~" (Tilde) is a special character that is used to set URL paths for ASP.NET Server controls and this character instructs ASP.NET at run time to resolve the relative path of the server control. If you look at the source code generated by the ASP.NET engine you won't … ![]() | |
Re: If you can determine the path of your database files from within VS, you should be able to attach to the DB easily from SQL Mgmt Studio. I'd recommend that you keep a copy of the DB files before making any changes. | |
Re: Is this page online to see all of the code? Also, did you include a doctype? I don't think not having one would be an issue for Firefox, but it would for IE causing the page to shift to the left even if you have the proper centering technique. No … | |
Re: Your sample code worked for me once I removed the comments on line #60. And of course, I added a reference to a jQuery library in the `<head>` section. | |
![]() | Re: For your example, you can simply update line #5 to: `<table width="600" border="0" style="margin:0 auto;">` However, you may want to consider styling all of your elements in an external style sheet. this will be more important if you have more than one HTML page with elements that need styling. An … |
Re: So, in your code behind, you can access a label control by its properties. Say in the example that you retrieved data from your data source and you want it bound to the label..for example... `label1.text = "Your string of data from your data source.";` Have you been able to … | |
Re: If you are the owner of the thread, you should see a large "button" right next to Watch this article at the bottom of the page.  | |
Re: You should also consider storing the video outside of the DB as an option either on disk or hosted with a video site and simply store the path of the video in your database. | |
I have a scenario that I am assisting with. I am not sure how to advise in this case. I am hoping that someone with a lot more database design/normalizing experience can clarify this for me. I am working on a simple database which will contain a table to track … | |
Re: If there is no router between the two subnets, then yes, you would have to adjust the subnet mask to have all of the hosts be able to communicate with each other. **Just by changing the subnet mask on this one client is not going to work**. For example, if … | |
Re: I copied your original code in a text file, save it and opened it with IE9, Chrome, and Opera. The JavaScript events executed as expected. Uploaded to jsfiddle.net --> http://jsfiddle.net/3afEY/ | |
Re: One way to promote your site is leverage social media. Encourage visitors to follow you on those platforms, have promotions, give-aways, etc... You can also pay for advertising on sites that compliment your products. Get involved with other partners that will promote you. Write good, unique content so that search … | |
Re: Better in what sense? Processing, price, management? What are your requirements for the adapter? | |
Re: I've been on for about a year now. I came across this site researching an issue. I liked the structure of the site, how it is cared for, and the overall community. Decided to stay and participate. | |
Re: If you were serving your country in Iraq, I want to thank you for your service and wish you all the best. Good luck and just keep practicing. | |
Re: Sounds like an interesting project.. post what you have so far on jsfiddle, or provide the URL to your online site, or provide the relevant code and details regarding where you are having trouble so far. | |
Re: For the mouse or track pad? your posting indicates mouse sensitivity. For the mouse, open the Control Panel --> View by Small/Large Icons --> Mouse. there are 5 tabs that allow you to configure the mouse settings. | |
Re: Do you mean an installation disk or installing both versions on the same disk? | |
Re: If you can provide a network diagram, that would be helpful. Rather than trying to troubleshoot this with browsers on different computers, you should use TCP/IP tools such as PING, NSLOOKUP, and/or TRACERT. What do you mean by "we use modems"? You have every PC with its own modem, or … | |
Re: You have a member, according to the top stats page, that generated **2,675** points in the last 24 hours, having no posts... only Facebook Logins. | |
Re: The AutoPostBack property is used to set whether or not an automatic post back will happen when you interact with the control. For example, take the drop down example. You may want a post back to occir when you select an item in the drop down because you may perform … | |
Re: I have also used highcharts as well. I would suggest that you take a look. Its very easy to deploy with static data, but can also be implemented in a manner that takes dynamic data when combined with server side scripting as you mentioned PHP. I've dabbled with it using … | |
Re: > i want to promote my member server (the one one which i recently installed SQL Server 2008) to a Domain controller(probably- Child2.parent.local) in the Parent Domain(parent.local) Why would you want to promote your SQL server to a Domain Controller (DC)? Running SQL on a DC is generally not a … | |
Re: asp.net is a framework. When you develop in asp.net, the two most common languages to develop in are c# or vb.net. | |
Re: It's too complex to explain how to develop this page in asp.net. If you follow pirataes suggestion, you can create a static version of the page. Assuming you want to pull dynamic data from a data source requires a lot of components, more than can be explained in one post. … | |
Re: In asp.net, you can assign values to specific properties to style the controls, but the asp.net engine will convert all of it to HTML and CSS. I'd also recommend using basic CSS as well. For margin, as pretaeas suggested.. margin {top right bottom left} | |
Re: What is the URL of the site so we can take a look and provide feedback.. | |
Re: I dont know what you mean by "size of web page"... you will need to elaborate or futher explain. With regard to code of submit button... if you double click on a button in design view, Visual Studio will create the method for you in the code behind page. I … | |
Re: Use a line break <br /> between the words, I'd enclose the second word with span tags and underline the word. Text-align: center the words. | |
Re: Please validate whether you are trying to run ASP or ASP.NET pages. Also, on the web server, you have to enable the ability to run either/both. If you are managing your IIS server, you can enable the roles as shown in the picture below.  | |
Re: Once you have the site online, you may want to use this site to test the performance of your page. I have found it to be very helpful. In the results, the report indicates areas that need attention and provides a summary of recommendations. http://www.webpagetest.org/ | |
Re: According to their online documentation, 465 and 587 is allowed but that's not going to help you receive mail since other smtp servers on the Internet would try to deliver mail to you on port 25. | |
Re: If you have access to SQL Management studio, you can create a maintenance plan. Its GUI driven so its very easy to set up a backup job. In addition, the job can include options for deleting older backups after x days so you dont have to worry about keeping an … | |
Re: If you have the image source information stored in a database and the pictured stored in a folder then simply connect to the database, read the path, and assign this path to the source attribute of the image element\control. If you have many images you can also use a repeater … | |
Re: About 10 hours per day for me during the week. | |
Re: If you are stuck on an island, its probaably too late and you would wish you would have brought these items with you. I think the most important thing to have is a mirror to be able to reflect light so that someone can see me from a distance. Everything … |
The End.