5,277 Posted Topics

Member Avatar for gahhon

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.

Member Avatar for gahhon
0
240
Member Avatar for daniel.conlinjr.1

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.

Member Avatar for JorgeM
0
355
Member Avatar for robert3353

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 …

Member Avatar for CimmerianX
0
243
Member Avatar for ACRDepos

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 …

Member Avatar for ACRDepos
0
252
Member Avatar for maazad

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, …

Member Avatar for JorgeM
-1
69
Member Avatar for haybee

>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 …

Member Avatar for JorgeM
0
236
Member Avatar for gahhon

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> ![2a4a7e10344ca4f3c7f5a37fdb676e66](/attachments/large/3/2a4a7e10344ca4f3c7f5a37fdb676e66.PNG "2a4a7e10344ca4f3c7f5a37fdb676e66") And I agree that you are going to upset your visitors if you open a …

Member Avatar for JorgeM
0
413
Member Avatar for brandon66

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 …

Member Avatar for brandon66
0
198
Member Avatar for Rik_

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 …

Member Avatar for mmcdonald
0
191
Member Avatar for gahhon

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)

Member Avatar for gahhon
0
145
Member Avatar for <M/>

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?

Member Avatar for <M/>
0
361
Member Avatar for progressing

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 …

Member Avatar for progressing
0
135
Member Avatar for gaylordcat
Member Avatar for gahhon

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 …

Member Avatar for gahhon
0
200
Member Avatar for castajiz_2

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 …

Member Avatar for JorgeM
0
71
Member Avatar for everton.retweets

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 …

Member Avatar for mmcdonald
0
162
Member Avatar for Ace16

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 …

Member Avatar for Ace16
0
145
Member Avatar for gogs85

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 …

Member Avatar for veedeoo
0
4K
Member Avatar for iamthwee

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 …

Member Avatar for ehpratah
0
139
Member Avatar for aish1108

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 …

Member Avatar for dom246
0
474
Member Avatar for gahhon

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/)

Member Avatar for gahhon
0
469
Member Avatar for gahhon

> 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 …

Member Avatar for gahhon
0
234
Member Avatar for gahhon

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 …

Member Avatar for gahhon
0
157
Member Avatar for castajiz_2

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> …

Member Avatar for JorgeM
0
82
Member Avatar for drumichael87

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 …

Member Avatar for drumichael87
0
281
Member Avatar for Nvsp

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?

Member Avatar for JorgeM
0
122
Member Avatar for shiji91

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 …

Member Avatar for CimmerianX
0
129
Member Avatar for anestistsoukalis

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, …

Member Avatar for anestistsoukalis
0
179
Member Avatar for Gazzmonkey

> 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 …

Member Avatar for Gazzmonkey
0
572
Member Avatar for Violet_82

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 …

Member Avatar for Violet_82
0
113
Member Avatar for Awadh_1
Member Avatar for Anima Templi
0
64
Member Avatar for jerry717

> 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 …

Member Avatar for diafol
0
282
Member Avatar for khakilang

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. …

Member Avatar for Ancient Dragon
0
211
Member Avatar for Kazeemsho

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 …

Member Avatar for JorgeM
0
277
Member Avatar for gahhon

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.

Member Avatar for gahhon
0
133
Member Avatar for Violet_82

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 …

Member Avatar for Violet_82
0
1K
Member Avatar for gahhon

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 …

Member Avatar for JorgeM
0
2K
Member Avatar for Dani

I think this was worth your time. For some members, probably more than would admit, their scores are important to them.

Member Avatar for JorgeM
2
237
Member Avatar for gahhon

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 …

Member Avatar for JorgeM
0
131
Member Avatar for gahhon

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 …

Member Avatar for gahhon
0
193
Member Avatar for neil.calderon.3

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.

Member Avatar for zeehlabs
0
132
Member Avatar for Marty1963

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);

Member Avatar for almostbob
0
399
Member Avatar for happygeek

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 …

Member Avatar for Samuel Baker
1
817
Member Avatar for Siberian
Member Avatar for gogs85

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

Member Avatar for JorgeM
0
266
Member Avatar for artland.mehul

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 …

Member Avatar for JorgeM
0
250
Member Avatar for PHIPH

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 …

Member Avatar for CimmerianX
0
206
Member Avatar for PriteshP23

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 …

Member Avatar for PriteshP23
0
138
Member Avatar for Steviebone

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 …

Member Avatar for pritaeas
0
342
Member Avatar for ibrahimilen

The End.