5,277 Posted Topics

Member Avatar for terryds

Your site didn't load for me so I could not see the header. But to answer question 2, simply apply a border-top of 5px, but transparent. That way the 5px is already taking space , but you can see it. When you hover, the color will simply change but the …

Member Avatar for Alberto Bucur
0
93
Member Avatar for iamthwee

>What can I do about this. I need these ids as references to fields in my db. How do I send this to the db ensuring the user's have not tampered with it. Do I have to store these in a $_POST[] field? When the form is posted, you will …

Member Avatar for iamthwee
0
163
Member Avatar for Samerases

The "speed" of a network card is generally categorized in either Megabits or Gigabits per second. It's very common these days to find that your computer has a 1 Gb/sec card (wired). Of course, the network that this card is plugged into would have to be able to support that …

Member Avatar for Samerases
0
164
Member Avatar for vishnu05

You can accomplish this using several methods. Here is a quick an easy one, i think... you will need jQuery though. assign your button an id='edit'. <input name="Button1" type="button" value="edit" class="auto-style12" id="edit" /> <script> $(document).ready(function(){ $('input[type=text]').attr("disabled", "disabled"); $('#edit').click(function(event){ event.preventDefault(); $('input').removeAttr("disabled"); }); }); </script> What this script does is that upon …

Member Avatar for Troy III
0
194
Member Avatar for vvsssteja

In Device Manager, Disk Management, do you see the disk listed there, possibly as a "foreign disk". If so, you simply need to import the disk.

Member Avatar for kareythomson
0
483
Member Avatar for nitos

In the event you had more than one form, you can check to see if a particular input elment of type "submit" executed the post. For example.. <?php if(isset($_POST['submit'])) { // input with name=submit was clicked. // do stuff; } ?> <input type="submit" value="Submit" name="submit" />

Member Avatar for nitos
0
566
Member Avatar for john_56
Member Avatar for laura301019

Take a look at this article. Its for a listview instead of gridview, but I suspect that you should be able to use the same approach. http://www.aspsnippets.com/Articles/Find-and-access-controls-in-EditItemTemplate-of-ASPNet-ListView.aspx

Member Avatar for JorgeM
0
876
Member Avatar for ADSteam
Member Avatar for DANISH_1
Member Avatar for Stealthbird97

So based on your description, you want to integrate this cheet.js into your code? You have to download the files and integrate the scripts by placing these into the <head> section of your page...of course referencing the correct path in your folder structure. Then follow the documentation provided on that …

Member Avatar for Stealthbird97
0
156
Member Avatar for oomotayo

There is quite a bit of code you posted, i dont see where you call the javascript function. In any event, I would suggest you take a look at this thread. It is very similiar to what you need with regard to calculating within a row, client side. http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/467834/auto-calculate Demo …

Member Avatar for JorgeM
0
2K
Member Avatar for chozotheqhai

Use the first sample code you have above and assign each div a class of "course". Then use the sample code pritaes provided. That code will work. When you click on a div, only the div within that div will be displayed and then hidden again on each click. <style> …

Member Avatar for JorgeM
0
345
Member Avatar for khadija.cheeko

It would help to see the actual HTML that is received by the browser rather than the jsp code. Load the page right click view source.

Member Avatar for JorgeM
0
644
Member Avatar for cilla
Member Avatar for nishant_m
Member Avatar for mattyd

Hello mattyd, Can you explain what this is representing and what it is used for? There is no HTML element called "name". `<name="country" id="country" size="23" />`

Member Avatar for mattyd
0
249
Member Avatar for chaitu11

How is this being posted? Are you allowing users to upload content? Do you have any filters in place to prevent this?

Member Avatar for diafol
0
146
Member Avatar for jdm

To resize the divs to match that of the largest height, you can do so via javascript. You simply need to gather the various heights and determine what the largest value is. Then take that value and apply a new height to the other divs. Here is an example... [Dynamically …

Member Avatar for jdm
0
227
Member Avatar for محمداسد
Member Avatar for gabrielcastillo
Member Avatar for brett.warren.1612
Member Avatar for HunainHafeez

You may need to be patient on this one. I would love to assist, but I have no working experience with MVC, only web forms. Hopefully, another member at the asp.net mvc guru level can help you with this one...

Member Avatar for HunainHafeez
0
119
Member Avatar for Khyati Patel

You simply include it in your aspx page like you would any other HTML element. Can you clarify what the issue is?

Member Avatar for JorgeM
0
65
Member Avatar for cerveausys
Member Avatar for XTMercenary

feel free to post what you changed or any other info that may help someone else with a simliar problem.

Member Avatar for Troy III
0
108
Member Avatar for notacop

So what it is you are asking for exactly? You want to send the values via AJAX? Ok plain old JavaScript AJAX or are you using a library such as jQuery? What have you tried, what isnt working for you?

Member Avatar for diafol
0
160
Member Avatar for rincewynd
Member Avatar for john_56
Member Avatar for Josephvan
Member Avatar for vishalonne

You could store the start and end date in one of your db tables, or another data source such as an xml file. Then when the page is loaded, using php code, check the current data and see if its within the start and end date that you are storing. …

Member Avatar for JorgeM
0
181
Member Avatar for centenond

There are different ways to do this. If you want to open what looks like a window, but really a div on the same page, what you would do is have that div with a display:none; when the page first loads so you dont see it. when you click on …

Member Avatar for centenond
0
178
Member Avatar for bilal.saim

Can you elaborate a bit more on what you are trying to do and what the problem is? so far what I understand is that you have an iframe on your page and there is some sort of post back that is occuring?

Member Avatar for bilal.saim
0
132
Member Avatar for theashman88

You can use the ToUpper() or ToLower() on the input and then compare it to the correct answer in that same case. For example... if (answer.ToLower() == "abu bakr")

Member Avatar for theashman88
0
321
Member Avatar for kermie

>I have removed the hard drive from the laptop but it doesnt seem to have any switches on it to set it to slave. those switches you are referring to are found on parallel ATA (PATA) drives. I would think that this drive you have in your hand is a …

Member Avatar for kermie
0
213
Member Avatar for wkwasniak

Yes, sure. I dont see why. When you access this page, the PHP engine converts it to html markup and sends it back to the browser. So I dont see why the concern about the PHP echo'ing.

Member Avatar for wkwasniak
0
336
Member Avatar for ZaneDarklace
Member Avatar for chaitu11

>how to refresh advertisements after every 2 sec in website using php You would have to handle this client side because if you want PHP to take care of it, then the page would have to be reloaded every two seconds. That's not going to work. You need to do …

Member Avatar for chaitu11
0
347
Member Avatar for mattyd

I don't see a problem with having a text file on your web server and then you retrieving that text using javascript/jQuery AJAX. Can you elaborate regarding the risk you read about?

Member Avatar for diafol
0
301
Member Avatar for mattster

Image preview? You should be able to build something easy. The general idea is that when you hover over an element, you want some image to show somewhere. Take a look at this [Javascript thumbnail viewer](http://www.itgeared.com/articles/1501-create-simple-javascript-image-thumbnail-viewer/) example. When you hover over the thubmnail (in this case its an image, but …

Member Avatar for JorgeM
0
218
Member Avatar for Roobin

>I would like to access each folder from my website but i only got the 123456 as reference in my database (mysql). you dont know or have no reference to the rest of the folder name? How are these folders created? >Is it possible to get php to open the …

Member Avatar for Zagga
0
102
Member Avatar for mattster
Member Avatar for JorgeM
3
186
Member Avatar for pritaeas

Here is the link for the "Member badges" thread that when clicked, results in a soft 404 page. http://www.daniweb.com/community-center/daniweb-community-feedback/threads/472741/member-badges

Member Avatar for Ancient Dragon
0
197
Member Avatar for wesh_1
Member Avatar for ryanwhite17

I noticed that the div that contains the list of locations has a class assigned called "lightcontainer". Why dont you just modify the CSS file (css/responsivegridsystem.css), line 488 and update the background color there... .lightcontainer { background: #f90105; padding-left:5px; padding-top:5px; }

Member Avatar for gabrielcastillo
0
306
Member Avatar for CaffeineCoder

>I've checked that ASP is installed Are you absolutely sure that ASP is enabled? Go to: Server Manager ---Web Server (IIS) ------Add Role Services Select these role services.. -ASP -Request Filtering -ISAPI Extensions

Member Avatar for CaffeineCoder
0
305
Member Avatar for Jev181

I didnt see any issues other than it shifting to the left-right. If this is what you are talking about it is because some of your pages do not fit within the viewport so the scroll bar appears on the right side of the screen. when that happens, things shift …

Member Avatar for JorgeM
0
314
Member Avatar for grafic.web

Publishing is the recommended approach. However, there is an alternative to the publish option. You can copy the required files manually via FTP. Take a look at some of these links: http://www.w3schools.com/aspnet/mvc_publish.asp Also discussed on an asp.net forum thread: http://forums.asp.net/t/1636237.aspx

Member Avatar for JorgeM
0
168
Member Avatar for grafic.web
Member Avatar for OKfurnitureUAE

The End.