5,277 Posted Topics
Re: Please provide your sample jQuery code. | |
Re: Yes, generally to access a database, you need some type of server side scripting such as ASP, ASP.NET, PHP, Java, etc.. With regard to the web server, if you will be hosting ASP, or ASP.NET, you will be using IIS on a Windows box. If you are going to code … | |
Re: >Is the MySQL database and the SQL query language part of the Microsoft Windows 7 operating system No, the MySQL database application is not included. You can download a copy from their website: http://www.mysql.com/ With regards to the SQL query language, there is nothing to install. You write your SQL … | |
Re: It would be more helpful if you provide sample code from this table you are referring to. | |
Re: Everyone needs code. That's not exactly how it works here. Generally, you formulate a well thought out question, providing specific examples and information related to errors you may have encountered, etc... then you get help. In any case, based on your statement, it sounds like you are interested in some … | |
Re: While posts are generally not deleted, unless a rule was broken... you can click on the "flag" icon and provide a reason for the deletion. A moderator will review the reason and take the appropriate action. | |
Re: The first thing that I noticed is that you were including the HTML5shiv, but your doctype is of html5. Your document decleration should be... `<!DOCTYPE html>` instead of... `<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">` I did check with IE11 and used the browser tools and noticed that if … | |
Re: code looks good to me and I tested locally as well and the action works as expected. | |
Re: It's accomplished using URL Rewrite techniques. This is a fairly common practice. One of the main purposes of using URL rewriting is to allow for the use of SEO friendly URLs. However, there are many other reasons why to use it such as for redirection. | |
Re: This error means that you are trying to use a reference variable that has a value of nothing(VB)|null(C#). You likely have a scenario where you never assigned a value to the variable, or you set the variable equal to nothing|null manually. | |
Re: So if i understand you correctly, you have a gridview control and when you select an item, you want to view the details of that item on the same page. If so, this is generally accomplished using a gridview and detailsview control. There are quite a bit of tutorials online … | |
Re: You have a for loop that will prompt you for 2nd and 3rd input for a total of 7 times. Not sure why you glhave those two additional prompts if you are only checking after prompt 3 | |
Re: >but there're many point of view and many ways of thinking about this solution. That's true because there is no right or wrong way regarding this topic. I also prefer storing images and uploaded files on the file system. However, if you read comments about those that store this in … | |
Re: >using (OracleConnection Con = new OracleConnection("SConnectionString")) you either need to supply the connection string there, or add the connection string to your web.config file and then reference the web.config when setting up your connections. in web.config... <connectionStrings> <add name="connName" connectionString=" .. you fill this in ..."/> </connectionStrings> in your code … | |
Re: At some point you may be picked/asked to be "featured" in the montly newsletter. http://www.daniweb.com/email/archive With regard to "Colleague", I think you are referring to "Team Colleague". I beleive that at some point in the past, some of the moderators that were no longer able to or wanted that role … | |
Re: >I am just new with ASP.NET c# and some of the function is Im not familiar, I need your help on this matter.. The solution to this problem is likely going to be client side related not server side. What you are asking is that when you select something on … | |
Re: I beleive your code should be changed to: Automobile car = new Automobile(); int x = car.compute(2,3); | |
Re: I put together an example that you can look at. Seems like the `@media print { }` is working. <!DOCTYPE html> <html> <head> <style> @media print{ #tbl1 {background-color:#999; } </style> </head> <body> <table id="tbl1"> <tr><th>Heading1</th><th>Heading2</th></tr> <tr><td>Cell1</td><td>Cell2</td></tr> <tr><td>Cell3</td><td>Cell4</td></tr> </table> </body> </html> Keep in mind that if the user has to enable … | |
Re: >thank for all,,,,Especially JorgeM.... Thanks, but unfortunately TMG is a product I have no knowledge/experience in. >I want to make group of users be on the Fiber line, remaining on the ADSL line. Possible? if yes,,, how?~~~ If all of the users are configured to hit the same gateway solution … | |
Re: >The issue is it keeps calling the beep sound every second due to the constant iteration of the function. Isnt it because the response_status coming back is always set to 1? Sorry, I'm not clear on the process here based on what you are trying to do. From what I … | |
Re: Not sure what you are trying to do but how about this... setTimeout(function(){ cerrar(id) },1400); | |
Re: You've posted quite a bit of code. I would recommend that you narrow it down to the code snippet you are actually having a problem with. There are quite a bit of Javascript gurus on this site that can help you but its unlikely anyone is going to read all … | |
Re: >I mean, my fear is about the database... if i make some change on my code and i wnat to put the project on the server, will i lose my data on the database of the server? I assume that you have this project locally on your computer. This is … | |
Re: It would probably be more helpful for us if you tell us exactly what is not working. What part of the validation is not working? What are you trying to validate exactly. | |
Re: maybe something like this... <!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <a href="javascript:void(0)" onclick="myFunction('http://www.google.com')">Google</a> <script> function myFunction(url) { window.open(url); } </script> </body> </html> This is just one idea. I'm sure that you get the idea here and can come up with something more specific for your needs. | |
Re: Can you explain a bit more of what trouble you are having? I can access the links you posted with no problem. ![]() | |
Re: Instead of alert, you want to redirect the user? Did you try.. `window.location.href="#login-box"` | |
![]() | |
Re: I've always liked Nivo Slider. However, there are countless slides out there. You can also build a simple one on your own. | |
Re: This looks like a duplicate thread, same concept but different content. Please read my comments... http://www.daniweb.com/web-development/aspnet/threads/473425/passing-value-from-pop-windows-using-asp.net-c Try to stick with one thread instead of creating additional threads when you dont get a response on one. | |
Re: We definately need to see your code, but it sounds like you are writing to your dB on each page load. You should check to see if hte page is posted back by the submit button and if it is, then continue processing to write to the db. If its … | |
| |
Re: You mentioned a modem, but do you have a router connected to the modem? If the ISP provided this "modem", now they typically provide you with one box that serves both functions. In any case, what you really want is that on the router, look for the "port forwarding" or … | |
Re: I dont have a specific model to suggest, but I have had excellent experiences with HP servers. Mainly due to the reliability and HP support. Years ago (about 4 or so) I was heavily involved in server support. Had alot of experience with the DL360 and DL380 models ranging from … | |
Re: This site has a step by step guide. I havent tried this myself, but just providing it in case you havent tried this process. http://malwaretips.com/blogs/ads-by-keep-now-removal/ If I can recommend a different approach after you resolve this issue... Set up a clean installation Windows, install the latest service pack and security … | |
Re: Sounds to me like you would need break up the table into multiple tables personId name 1 Jim 2 Sally 3 John 4 Fred 5 Sam 6 Marie 7 Fred 8 Tom favid personId favoriteColor 1 5 red 2 6 green 3 6 orange 4 6 purple foodId personId food … | |
Re: In the code-behind for the .ascx (page were control exists) page, expose the property VB Example... Public Property lblControl As String Get Return lable1.Text.ToString End Get End Property C# Example... public string lblControl { get { return label1.Text.ToString(); } } Then, on your web page in the aspx page, you … | |
Re: An RSS feed is important for your site because you can allow your readers to subscribe to your content. In turn, they can share these feeds on social networks. The process continues your site can get exposure. Some search engines also allow you to submit your RSS feed and they … | |
Re: >I had placed order in the increment counter (StockAllocate + 1) like so (StockAllocate + 1) but this did not seem to work. Where? I don't see that. Maybe this is what you want to do? StockAllocate = (Order + 1) | |
Re: Hello and welcome. | |
Re: These files that you say you see the actual code.. they are saved as .php and not another extension like .txt or .htm? | |
Re: I think you may have the domain concept confused with regard to its use on a Windows 7 computer. For a windows computer to "join" a domain, you need to first have a Windows server running Active Directory Domain Services. The domain concept in Windows refers to a centralized service … | |
Re: You are missing quotes. var arnold = "going"; It will display an alert message with the string of characters. | |
Re: There are lots of tutorials and videos on the asp.net site. Have you checked there? http://www.asp.net/get-started | |
Re: Looks like this is a duplicate thread of this one: http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/467834/auto-calculate |
The End.