5,277 Posted Topics
Re: When I visit your link above, yes with Chrome there appears to be some type of issue. However, when I copy your table related mark-up and CSS into a dedicated htm file, the table renders perfectly as expected. Not sure what the issue is at this moment, as I am … | |
Re: On the post back the focus is not at the top? Check: [Page.MaintainScrollPositionOnPostBack Property](http://msdn.microsoft.com/en-us/library/system.web.ui.page.maintainscrollpositiononpostback.aspx) | |
Re: Try.. c# `Page.MaintainScrollPositionOnPostBack = true;` | |
Re: Both can be active, but Windows should prioritize the adapter with a faster connection. | |
Re: Hyper-V, VMWare, Xen all fall into the same grouping, just different products with different strengths and features. It appears that the hosting provider you mentioned, simply provides you with a VM infrastucure that allows you to create guest Virtual Machines. The bigger the VM host, the more VM guests you … | |
Re: Please provide your relevant code you are having a problem with. here is a basic example. `a:hover {background-color:yellow;}` | |
Re: Yes, ask your question. Include the SQL statement as well as any errors that resulted when executed. | |
Re: If you still need help, a better indication of how you want the layout to look like would be helpful. LastMitch's suggestion regarding an image would work fine. | |
Re: If you are including CSS3 and HTML5, it may be very challenging for you especially if you are trying to include support for IE8 or earlier. What version of IE are you trying to code for? You can use IE conditional statements to "do stuff" when earlier versions are detected. | |
| |
Re: Also, you will need to think about JavaScript/jQuery and AJAX if you want to be able to allow visitors to interact with your page without a page reload every time someone clicks a like/unlike button on your page. You would have to provide a lot more details if you want … | |
Re: Without any relevant code or a link to the site online, it is difficult for members of this forum to give guidance. | |
Re: Not this this will fix your issue, but you should definately consider using a document type declaration just above the `<html>` opening tag. Without it, you are surely going to run into quirky issues since IE will go into quirks mode without a proper doctype. Just start getting use to … | |
Re: I hate to ask the obvious question, but have you checked on toshiba's support page? | |
Re: >When i zoom out or in, everything move Can you clarify what it is you mean? When I visited your page, the content appears to be in the center of the screen. | |
Re: What operating system are you running? Back in the day with NT4, this was a common scenario. You could easily convert to NTFS by using the convert command. Open Command Prompt. In the command prompt window, type: convert drive_letter: /fs:ntfs | |
Re: The primary reason is to provide authentication services in the event of a WAN failure. | |
Re: If you have an available PCI slot on the motherboard, you could purchase a card and plug it in. Before you do so, you need to know exactly what type of slot you have as their are different types of PCI connectors and you want to make sure it's Win … | |
Re: based on your code it appears that you already have that URL assigned to the string sUrl. Therefore, you can simple do a response.redirect. `response.redirect(sUrl)` | |
Re: Explaining how the IP addresssing scheme and routing works in a single thread is really challenging. In any event, what you are asking doesnt make much sense with regard to what you posted. For example, you list 500 hosts. What do you want to know about this? I assume that … | |
Re: If you would like the navmenu to be centered, remove the right property, assign a width and set the left and right margin to auto. #navmenu{ position:relative; font-size:100%; width: 900px; margin: 0 auto; padding: 0; top: 100px; } | |
Re: The main purpose you use AJAX for is to get data from a web server and display it within your web page without having to reload the page. From the user's perspective, this improves the experience because nothing frustrates web users more than waiting a few seconds for a page … | |
Re: >the side elements (content area) changing without loading page. The solution is either going to be using Ajax or an iframe element to display the target content without a full page reload. | |
| |
Re: I havent had a need to implement this myself, but you should be able to check for other status codes, 302 for instance. In addition, for this to work, you have to make sure that the redirect does not violate security (it is same origin). Also, in your case, I … | |
Re: Hmm.. wasnt aware of that. Are you indicating that you see that behaviour for ADO.NET? You can get the number of rows affected in SQL... `SELECT @@rowcount AS 'TotalRows'` | |
Re: Auditing of files is generally important if you want to be able to track who creates, deletes, and modifies files. This sounds like a homework question, so you may want to refer to your course work to get the correct context of this question. | |
Re: If the site is online, you can provide us with the URL. That will be sufficient to inspect your code. | |
Re: If you store the password in plain text, I am not sure that there is a point in storing the hash value. If the DB is compromised, or packets captured during the email "resend", the passwords are vulnerable. | |
Re: So, do you have a question about this topic. Its not clear regarding your post, at least not to me. | |
| |
Re: Is it the same email? Instead of sending the same email 1000 times, why not send the email once to 1000 users (BCC-blind carbon copy)? If there is detalied info for each receipient, you could provide a link in the email back to a web page to collect that info? … | |
Re: The response to this question is not easily done in just a few sentences. Is this question for some class question, class project or something like that? If you are having an issue with designing a solution, more information is needed. |
The End.