5,277 Posted Topics
Re: I think you maybe confusing the checkbox for a checkboxlist control. If you have a static list of checkboxes, I don't see the advantage of using code behind unless you are generating the checkboxes from a datasource. But it seems like in your case you are trying to group checkboxes … | |
Re: I assume that you could use Calc from OpenOffice (its free) to work on your school project. Take a look before you purchase MS Office, unless you really need to buy MS Office. http://www.openoffice.org/ | |
Re: You havent provided any code or examples to work with. Its too challenging for anyone to help you in this manner. | |
Re: It looks like that site you reference is using Bootstrap. You can see an example here regarding the blue glow once the input gets focus: http://getbootstrap.com/2.3.2/base-css.html#forms If you only care about the red and blue when your input gets focus, you can do this with javascript/jQuery. You would have to … | |
Re: Your if..else block doesnt seem to have hte correct syntax. You are missing some braces. It should look like this... protected void SetDestinationURL(object sender, EventArgs e) { if (Condition_1) { // Statement_1; } else if (Condition_2) { // Statement_2; } else { // Statement_n; } } In any case, once … | |
Re: If you only want to affect a specific element use a different selector. The selectors you are using affect the elements of that type. For example, this code affects all elements of type input. $("input").focus(function(){ $(this).css("background-color","#fbecc5"); }); However, if you assign an ID to an input element and then modify … | |
Re: A different approach may be more helpful.. For example.... Add an asp:Hidden field in your form, to store the "user is sure" value. Set its default value to false. Then instead of using your code behind, add your javascript function in the .ASPX file directly. Modify the function so that … | |
Re: So you have an ASP.NET page that you are accessing to select an item from the dropdown, and you want to use that selection to be sent to a PHP page for processing, correct? Well..first, you will need to prevent the behavior of the postback in your asp.net page because … | |
Re: You will find that MySQL and MSSQL are the most common options. Are you hosting this within the local network or on the Internet? | |
Re: >Bounce, is a sign you are doing EVERYTHING wrong I think that a bounce is definately an indication that there is a problem, but it could also happen on pages where everything is done correctly. For example, if a user lands on a page and the content on the page … | |
Re: Accordingy to Microsoft's min requirements, a 1.8 GHz processesor meets the min processor requirement. http://windows.microsoft.com/en-us/windows-8/system-requirements Have you tried to perform the installation yet? | |
Re: Actually, if you want to have 8 GB of usable RAM, you need to install the x64 version of Windows 7. | |
Re: So both of your links are the same and based on the src attribute, it and seeing the behaviour, it leads me to beleive that you are doing something with jQuery to drop in the certificate stuff on the screen. Do you know what event is intercepting the click of … | |
Re: Welcome to DaniWeb. Please take a moment to read through the rules of the site. http://www.daniweb.com/community/rules | |
Re: Dani- With regard to szabiz's post above.. >On editing a post, the file upload function does not work on Google Chrome (Win 8). I just encountered the same issue. If you edit a post, the file upload doesnt appear to work. Windows 8/Chrome 28- Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 … | |
Re: I like the new layout, but I like change in general. It has a fresh look and feel, and definately gives the appearence less forum and more social it that makes sense. one comment... Not sure if this happended to anyone else, but it took about a minute to figure … ![]() | |
Re: Hello, it appears that you are a new member. You may want to take a moment to elobarate on your first post. If you are having a problem with some code and need help, you need to provide the relevant code and a detailed description of what the problem is, … | |
Re: I agree and have stated similar feelings in the past. | |
Re: How can anyone help without seeing your relevant code or link to where your site/code is located? | |
Re: Can you elaborate a bit more on what you need help with? Do you have a specific question, or is there an error you are having a problem with? | |
Re: You could try running the Microsoft System File Check utility. SFC will check and fix the system files. Follow the steps. * Click Start * Type "cmd" in the search bar, or locate it in the programs, accessories... * Right click on Command Prompt in the list. * Choose "Run … | |
Re: During the years 2000-2005, certifications were highly sought after by many in the industry. Today, while certification still shows employers that you have passed rigorous exams, they are definitely not a substitute for experience. I would recommend that yes, you continue on your certification path, but focus as much time … | |
Re: What password are you trying to retrieve? The WiFi password? Simply log into your Router or Access Point and you will be able to retreive the password there. If you are asking about retreiving a password for a protected WiFi network that is not owned or managed by you, then … | |
Re: Is the text file a requirement? Have you considered using an XML file which could provide you with better/easier structure to handle? also, you mention storing variables..is this because you need to keep some variable for long term storage, more than just a user's session? Or are you trying to … | |
Re: Do you have any idea of what the answers may be so at the very least you can say that you tried? This site is about collaboration; its not about doing your homework, assignments or exams. There are plenty of people here willing to help you if you at least … | |
Re: Are you sure this is the correct path? $.post('../inc/blogchoice.php', ..... What happens if you replace this with the absolute URL just to test? | |
Re: Do you have the HTML somewhere so we can see the behaviour you are referring to? | |
Re: Your question is too vague. Sounds like you are going to develop this in asp.net in either vb or c#. You will need a datasource and wil likely use MSSQL for your site. The rest of the details will depend on exactly what you want. Did you already create a … | |
Re: I've had hard drives that wont boot up but still spin when powered. What i've done in the past is connect the hard drive to a working system using an IDE/USB connector. Depending on the failure this may or may not allow you to access the drive. If you do … | |
Re: Unlike older versions of Windows, Win 7 is a bit more forgiving for hardware changes, but the best option is always to perform clean install on new hardware. If you talk to different desktop technicians, you will be likely to encounter a mix of reviews with regard to this process... … | |
Re: As you may already know, ASP doesn't provide a try...catch block for you to trap errors. The closest approach would be something like this... On Error Resume Next 'Try.... code that can fail here......... If Err.Number<>0 Then 'Catch... Response.Write("an error has occurred. Description: " & Err.Description) End If | |
Re: As indicated by Mike, you can post matlab related questions under the "Software Development" category. | |
Re: >how to develop myself in this field.I am learning oracle now. some ideas on how to develop yourself... buy and read books on database design and support, enroll yourself in database classes (Stanford Univ has a free online class that is very good: https://class2go.stanford.edu/db/Winter2013/preview/), get yourself in a social community … | |
Re: You need to incorporate URL Rewriting. Use .htaccess so you can rewrite those URLs that contain query string parameters for SEO friendlier versions. You can do a search on this site for htaccess and you'll find other similar posts. Here is a recent similar article: http://www.daniweb.com/web-development/php/threads/461100/url-rewrite | |
Re: >it blinks green and rapidly.. You may want to check the vendor's website for documentation on this monitor if they have it available. Sometimes, these LEDs will blink in certain patterns that indicate what the problem is. What I suspect is that the cost to repair the failure may not … | |
Re: Your question is too vague. What help do you need exactly? What kind of router is it? | |
Re: As fobos mentioned, the first line's syntax needs to be corrected to include a quotation mark and semicolon at the end of that line. <?php $num = 23434; echo "<table>"; echo "<tr><td><a href=\"home.php?num=$num\">$num</a></td><tr>"; echo "</table>"; ?> | |
Re: I would also tend to agree to go with a linux platform for PHP. There's no benefit here that I see why you would want to pay more for the Windows hosting soution, especially if this is going to be hosted on a shared infrastructure where you have no control … | |
The End.