5,277 Posted Topics
Re: I would use a [ValidationSummary control](http://msdn.microsoft.com/en-us/library/dd5c6s6h(v=vs.85).aspx) to display the error message in one place. Then you configure the individual validation controls to suppress their error messages. | |
Re: Just to add.... there is not sleep() function in JavaScript. The closest would be setTimeout(). @daniel.conlinjr.1 - if you can provide more details as to exactly what you are trying to accomplish, you can be provided with better guidance. | |
Re: Hello Robert, So to configure your router to allow unsolicited inbound access is not terribly difficult. You simply need to now what port(s) to open. When you log into your router, look for the tab/options related to Port Forwarding/NAT. In addition, you want to restrict the IP that can come … | |
Re: The pictures you link show that the rendering is pretty close across the three browsers. What comes to mind without looking at your CSS or HTML is that you may not be aware but browsers have built-in styles on certain elements. So what happens is that if you do not … | |
Re: I'm not sure your question is clear... You are asking that how to get paid to click on links, or are you asking how you can earn money if people click on the links (ads) on your web site? If its that you want to earn revenue on your site, … | |
Re: >Moreover is it available in hardware or software and perhaps can it be created by the windows available at a point. VPN systems come in both hardware and software solutions. If you have Windows server, you can set it up to support VPN clients. There is quite a bit of … | |
Re: This should be good for IE, but for Chrome, you'd have to have the user's browser configured to allow pop-ups. <body onunload="popup()"> <script> function popup() { popupWin = window.open('http://www.daniweb.com/','Pop-Up','width=640, height=480') } </script> </body>  And I agree that you are going to upset your visitors if you open a … | |
Re: There's alot of coding to do with regard to your description. I'd recommend that you break this up into components/phases. Start with the HTML. Do you have those pages already created? If so, any issues? Once you have the completed, then proceed with designing the PHP components. First step is … | |
Re: Bluetooth is not really a LAN technology; its considered a PAN (personal area network). While I'm sure you can work around this using Bluetooth, its not going to be scalable. For example, in the future you may add additional devices such as a NAS and other non-Bluetooth devices. Also, most … | |
Re: You can include the CommandName property on your buttons and use the switch blocks to perform different actions. See documentation and examples here: [Button.Command Event](http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.commandname.aspx) | |
Re: In each instance when you had this problem, did you view the page's source using the browser to make sure the iframe element was actually there? In what browser(s) did this not work in? | |
Re: It's possible that the CDROM drive's optical reader needs cleaning. It could also be simply some other failure within the drive itself. Fortunately these drives are relatively inexpensive. There's no drivers that you need to update. I don't think this is a driver issue. If you have another computer, a … | |
Re: By no means am I a regex expert but here is an example that meets the requirements. ^[._%+-/$][a-zA-Z0-9]{5}[a-zA-Z0-9]+$ There are other ways to write the regex but this requires the first to be a special character, then 5 more of alpha and numeric then one or more alpha and numeric … | |
Re: Yes but your javascript would include Ajax so that you can send the comments back to the web server for server side processing. There's already a service (among a few) that do this. Take a look at Disqus. You implement it on your site by including a block of javascript … | |
Re: The first rule sample that mmcdonald provide is accurate. I quicly tested it myself even though it looked accurate. My experience with rewriting questions is that some people seem to be confused about the process... For example... if you type this in the URL: http://website.com/index.php?a=profile&u=username, That will **not** be redirected … | |
Re: So, can you elaborate on the help that you are looking for? Are you just looking to finish working on the HTML template or do you need help with the server-side scripting that will process this template and send the mail message out? provide your html template to see what … | |
Re: If you would like to use friendlier URLs, you can create and configure the .htaccess file and create URL rewrite rules to do this. you can create rules so that your URL looks like this... `mywebsite.com/index/kontakt` to map to `mywebsite.com/index.php?id_1=main&id_2=kontakt` Are you familiar with .htaccess and how to work with … | |
![]() | Re: Just to add, the key here is that you have personal data to show based upon the user accessing the data. So you need to know who is accessing the data so you only show that user's data. A simple approach is to authenticate the user before you show any … |
Re: It can be done. While most would say just upgrade the site to ASP.NET where you its easy to implement caching, it can be done in Classic ASP. Take a look at this article from 4GuysFromRolla. They have quite a bit of stuff on Classic ASP. A few articles on … | |
Re: Take a look at this sample. I took your example and just modified a few items in the style sheet. There are several variations of how to build a navigational menu using CSS. http://jsfiddle.net/aUpLD/ Here is a resource: [Multi-Level Navigation Menu Using CSS](http://www.itgeared.com/articles/1420-css-multi-level-navigation-menu-tutorial/) | |
Re: > i want every columns value where Username = master.lblUsername but except the first column which is contain the username. Do you mean that other columns may have the value of @username? your current syntax is only looking at the fied called "Username" and you are simply displaying all fields … | |
Re: hmm.. i just tested the code in your last post and it worked for me. could it be that you have a character in txtCategory.Text that is causing the problem. Something not SQL friendly? for example, when my SQL field had a space included in the field name, an exception … | |
Re: What this selector means is that you are going to select an image element that is within a div element that has been assigned a class called "img". So for example, this is the image element that would be selected... <body> <div class="img"> <img src="#" alt="image" height="50" width="50" /> </div> … | |
Re: Without more detailed information about this network, it would seem that all you need to do is handle the appropriate routing at the corporate office. There is no need to create 78 individual tunnels. Whether there are tunnels or not, IPs can be routed. Keep in mind that within the … | |
Re: Even if you strech the picture, it may be too fuzy and not be very appealing. >for some reason whenever i try to move a certain block i end up just screwing up the whole picture What do you mean by that statement? | |
Re: What is the error message? Before you can access this resource over the network, be sure that the service is up and running and you can connect to it from the same server. Make sure this server (linux) is not running any type of local firewall filtering out traffic. You … | |
Re: We are confused by your question because to put an image above/on top of a menu bar, you simply use the <img/> element and some appropriate styling. I don't think this is what you are asking because the answer is too basic. So please clarify what you need help with, … | |
Re: > I can access my file server using the IP but I have no access if I use the FQDN If you can access the target server by IP address but not by name, the problem is generally one of two things... 1) Check your computer's DNS settings. Are they … | |
Re: Just as an extra note... If the only options are javascript and CSS, I also agree that javascript is the only option regarding a click event. However, this can also be achieved server side. For example, this is quite easy to implement without javascript in asp.net using panels. The downside … | |
Re: Sure why not...did you attempt and receive some type of error? | |
Re: > For instance let's say "Name", "Address", and "Phone number" are set as required fields, If I were to enter my name and address, but not my phone number and submitted the information, the page would refresh and display "Each field is required", however the fields marked name and address … ![]() | |
Re: I hated the Windows 8 UI and now I'm used to it. I still prefer Windows 7 though. I'm sure if you get enough responses on this thread, I'm sure you'll find a mixed of preferences. I don't see how all of these answers are going to help you decide. … | |
Re: Kazeemsho, looks like you are a new member.. Welcome! with regard to your question... its unlikely anyone is just going to respond by giving you an entire projet file with documentation on a system. Generally the way it works, is you start by explaning what you are working on, then … | |
Re: Are you supplying the querystring on all "child" pages? If not, then as new pages load, there is no information in the query string to pull from as per your code logic. The viewstate does not retain this value between different pages. | |
Re: With regard to being "legal" I assume that you mean conforming to the W3C standards? Having a span element within the legend element should not cause the document to not pass validation. I assume the reason why you want to use the span tag is for applying certain styles that … | |
Re: There are several ways to handle this but javascript/jQuery is probably what you want to do as Singlem suggests... here is an example that incorporates some asp.net controls to give you a better example especially if you are not familiar with javascript or the jQuery library. Something you may consider … | |
Re: I think this was worth your time. For some members, probably more than would admit, their scores are important to them. | |
Re: Create an array based on how many columns you get back from the query. Then use that array to store each column name. You may need two queries, one to get a count of the columns that you use to build the array. Then onece you know you can use … | |
Re: It depends on where you want the button and how you want the elements to interact with each other regarding positioning and flow. You could use float, change display properties (block, inline, etc...), use absolute/relative positioning, etc.. Here is one example on how to position the button on the right … | |
Re: Yes, you can configure hosts on the 192.168.16.x subnet to use either as their gateway. Not sure why you are mentioning failsafe or load balancing. There is no relation to that in this scenario. | |
Re: You can use add the vendor prefix for IE. For example, for IE 10, the transform will not work until you add the -ms prefix. -ms-transform: scale(1.06,1.06); | |
Re: Lol. Thanks. Very glad to be on the team. [edit] >Congrats! But how does a junior poster in training become one? (I'm just curious) Thanks, but I'm assuming you ask this because that's what's showing up in my title now... Lol. It looks like my title had changed to this … | |
Re: It appears that you started another similar thread. Please, one thread per topic. This will ensure you get the best collaboration from members of the community. Two threads that have overlap may produce confusing results for you. http://www.daniweb.com/web-development/php/threads/462970/how-to-remove-id-from-url | |
Re: If you would like to update a database table by sending an email, one of the options that would appear to be appropriate is that you can actually send an email to an established email address/mailbox. Then, with a program, have it routinely log into the email mailbox and when … | |
Re: Your router will be connected to your modem on the router's WAN port. You can connect the router to your switch on an uplink port or connect using a crossover cable If the switch or router cannot detect the port configuration automatically. The internet router will have different config options … | |
Re: It would help to see the HTML that is generated to be able to provide guidance on the javascript/jQuery. Aside from adding these elements using PHP, you need to target the elements as suggested by piers. You can target elements in a variety of ways using selectors, such as by … | |
Re: I think paulkd and diafol are on the right track in their suggestions. Your sample javascript is missing some of hte basic components in an ajax block. Whenever I use javascript for a simple ajax call, i put my ajax code within a function and it would look something like … | |
The End.