5,277 Posted Topics
Re: Without checking if your code is valid... Logically... If you arent getting an error, something must be happening. The problem is that what you are expecting isnt what is happending. You have a conditional statement on line 23. You are assuming that its returning true. It may be that its … | |
Re: how do you expect help without providing a sample of the code that's creating this problem. | |
Re: >but it only can do it about 10 times What happens after the 10th time? I dont understand what you mean. Can you provide more information about the problem? | |
Re: >So, now the problem is how do i get ip of site. Do you mean the IP of the web server? That would need to be provided by the web server hosting/provider. > & also $_SERVER['REMOTE_ADDR'] If you are using this code in your web page, you are collecting the … | |
Re: Does your code generate some type of error? Also, its a better idea to use Parameters... for example... SqlConnection con = new SqlConnection(conString); SqlCommand com = new SqlCommand("INSERT INTO dbo.Test_db (pf, loan) VALUES (@param1, @param2)", con); command.Parameters.AddWithValue("@param1", g1.Cells[0].Text); command.Parameters.AddWithValue("@param2", g1.Cells[1].Text); con.Open(); com.ExecuteNonQuery(); con.Close(); if you arent seeing an error, is … | |
Re: Do you have sample code (just relevant code)? Should be fairly easy to use the onclick event for this. | |
Re: I would say that the first and best option would be to reinstall Windows 98SE and restore the data from backup, but of course that's not an option otherwise you would have done that, correct? So, what do you mean by corrupted? Is the disk bootable? If not, you can … | |
Re: Yes it can be done. You need to set up NEtwork Address Translation on the server. You also need two NICs on that server. Connect one NIC to the router and the other NIC to a switch then all of the computers to the switch. Here is a video tutorial: … | |
Re: If button2's visible property is set initially to false, then in button1's click event simply change button2's visible to true. button2.Visible = true; | |
Re: Riteman, There are reasons why you would decide in a connected or disconnected approach based on exactly you are trying to accomplish at the time of the query. I don't believe you can simply approach this by deciding to go with one or the other for the entire site as … | |
Re: Hello Angelina, Security is a great field for anyone that has an interest in that field. There is plenty of opportunity in that area regardless of your gender. If that is something you are interested in, I see no reason why you shouldn't pursue your goals and objectives. | |
Re: Is there something not working as expected in that jsfiddle? | |
Re: If you are looking for colors that work well together, take a look at Adobe's online tool... https://kuler.adobe.com/create/color-wheel/ ![]() | |
Re: Do you have a default document in that directory. When i access the page, i get a 403 error. if you dont have a default file defined in IIS or your web.config then you have to specify the file name in the URL. | |
Re: There isn't anything wrong with that. A server's Internet connection may be less than your download speed or more commonly bandwidth is throttled so that one connection doesn't take up all of the available bandwidth. | |
Re: Looks OK in IE11?  | |
Re: Im not familiar with this router, but did you make sure that the host you are forwarding to does not have a client side firewall turned on? if it did, even if you set up port forwarding correctly, those internet services you mentioned to check the ports would show closed … | |
Re: jQuery trigger is a viable option... can you provide the relevant code? maybe something else is preventing the trigger from working? | |
Re: It really helps if you provide your posts with more relevant information. For example, where is the relevant HTML code for this? Here is a working example and tested both using Chrome and Firefox. Works fine. <!DOCTYPE html> <html> <head> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <style> #reachme { background:red; height:100px; width:100px; … | |
Re: If you provide additional information like to relevant code, that may be helpful | |
Re: There are various ways to handle the network configuration. From a networking/routing perspective, I wouldnt say connecting both routers using a VPN connection is necessary. I'm not familiar with those router models, but if those routers allow you to define VLANs, then you would simply create another subnet that will … | |
Re: Well the first problem is that I don't see where "days" is defined anywhere in your script. Also is p being treated like a number? Use f12 in your browser to load the console. You can see your errors and warnings there. ![]() | |
Re: I suspect that the purpose of this post is simply to promote the signature links (which aren't visible to non-logged-in members). Let's see if there is actually any discussion or further interaction from mHealth. @mHealth - I beleive there are probably some general reasons why so many tests are ordered. … | |
Re: >I've toyed with N-Tier data applications and I find them highly annoying and complicated as well as convoluted. My opinion is always design for simplicity and add complexity only if the business requires it. Designing N-Tier solutions isnt always the correct design for every solution. >I know if you run … | |
Re: Aside from trying to reisntall Chrome, I'd recommend you download MalwareBytes and run a scan on your computer. Its a free tool and its effective at finding malware that traditional AV programs fail to locate. | |
Re: It is possible to bind more than one event on an element. | |
Re: On a related note, you should consider using parameterized queries instead so that your parameters are passed as literal text. This prevents errors and is good for security. A simple example regarding why you should use parameterized queries.. say any of the variables you are using in your SQL query … | |
Re: Why are you placing your code within the web.config file? Your web.config file is to be used for configuration of the site, webserver, etc... Your code should either go in a .aspx page within script tags, or better yet, in the .aspx code behind page within some event such as … | |
Re: Are the tips of the cables colored? How many of these colors correspond to the connectors on your sound card? You may see these colors on your sound card: White or Yellow: digital out typically used with surround sound equipment Blue: Sound in for connecting an external audio source Pink: … | |
The End.