5,277 Posted Topics
Re: I beleive that Donald JP is asking about "Z Word Tools".... used to write, check, index and diagram Z specifications in Microsoft Word. | |
Re: You can do this by using a rewrite module. For asp.net, its the URL Rewrite Module (or you can write a custom one), for php you'd use a .htaccess file with the rewrite rules, etc... ![]() | |
Re: Aside from the help gabrielcastillo is providing which is excellent, that's only the client side script. This server side script doesnt seem appropriate if you are using to interact with your client side script. The server side script, as written is mean to be used stand-alone. If you are going … | |
Re: >Support team said, code is in error hmm.. you'd expect that if the code was the problem, it wouldnt work on your local system. Have you tried using your provider's smtp relay server? --just to validate that your code is good and you are able to send mail via their … | |
Re: We assume that when you say sessions, you mean you are doing something like this... Session["userid"] = someData; in this example, where are you getting this data to assign to the session variable? Further reading for you... [ASP.NET Session State Overview](http://msdn.microsoft.com/en-us/library/vstudio/ms178581(v=vs.100).aspx) | |
Re: Well like the error states, the div contains a control, not literal text. InnerHTML is expecting literal content. I haven't tried your approach... I recommend you use a repeater control for displaying from a DB query. Or a gridview. However I like the repeater because you can include basic HTML … | |
Re: >I don't think you want to link two aspx pages to the same cs file, I don't really see why you'd want that agreed... that's not how asp.net works. Each of these .cs files are also known as the code-behind pages. Their purpose if for you to be able seperate … | |
Re: Are you familiar with jQuery? There are basically two components you need. Your jQuery script and the server side script that will take data from the Ajax call and write to your DB. Then, your script can return data back to your client. | |
Re: There is no HTML property for that element in this scenario. What you probably mean is you want the value of the ref attribute. Use attr() http://api.jquery.com/attr/ | |
| |
Re: Sounds like you are a young student. As you get older and get life experience, you'll find that titles mean very little and when people brag about titles they know even less. If you know the concepts and can do it... I'll say your a programmer. Who knows if you … | |
Re: You want the value in a field automatically changed after a certain period of time? | |
Re: When does the screen go black? after a period of inactivity or while you are working..or when you move the screen? Does the screen come back when you swivel the screen back and forth...if so, its probably the cable inside the laptop that went bad. | |
Re: Site-to- site VPN between both locations created at the edge/perimeter network so the servers are unaware of the tunnel and no configuration is needed by the servers or applications running on those boxes. | |
Re: So, I assume that you'll have some type of button or other element that you will click. There needs to be an event handler to allow you to execute some code. in this block of code, you read the value from your text box and then parse the data to … | |
Re: Your sample code above is confusing to review when you have scripts that are commented out. Why include them for us to review if you have them commented? My recommendation is that you load jquery first, then the UI, then modernizer, then your extra js files after that either in … | |
Re: +1 for almostbob.. If i can add that may be helpful for you, just use the dev tools of your browser so you can inspect the elements of the page. here is how the site took care of that effect..  | |
Re: Also keep in mind that the word "Network" is very generic. There are various components to a network that people generally refer to... the physical network such as boxes and wires, and the logical network which are the applications that run networking services on those boxes and wires. | |
Re: I havent tested your code, but i think if you change lines 32-34 to this... it should work. .currency li:hover ul { display:block; } | |
Re: Good start and you are close, but it looks like you are a bit confused on the part of the text box and missing a few items. The text box needs to be part of the form already. you dont need to add the text box dynamically. You are only … | |
Re: I see this question quite frequently but always wonder about this... It sounds like this is some sort of school assignment? If so i would expect that your professor would provide some guidance here.. In any event, i think a good first stab at a web application is some type … | |
Re: Microsoft provides free trial versions that you can download from their website. | |
Re: Serious suggestions? Who comes here for anything other than that? 1- you have options. You can use VS with a local version if SQL, or you can install SQL express, or point your solution to some other instance of SQL. If you want the local version that's used for dev … | |
Re: You want your users to use your site to get to their storage? Or you want your site to connect to cloud storage so you have the ability to provide storage for users? | |
Re: There are a lot of components involved to get setup a client/server app to work. you have physical and logical networking components, not to mention all of hte software that will be used in the system. You may consider breaking this very vague question up into more specific threads. | |
Re: I'd say that a string type is the most appropriate. You simply need to add in validation in your application to ensure that you only allow input that you expect. | |
Re: That process that you described sounds accurate and expected. Assuming the arp cache is empty from the source TCP/IP host... when you "ping" another host by IP, the source computer first does a lookup in its local routing table, it then needs to determine what interface the packet will leave … | |
Re: If you are really interested in the travel, then the IT Consultant may be a good option for you. You can be part of a development team, project managment, or sales. Many organizations look for consultants to help them get projects implemented because they do not have the time or … | |
Re: Line 1 which you showed in your post is part if the page declarations. The Page Title attribute listed there is the title assigned to the title in the browser tab, not the word register in your page content. You can modify the look and feel of you page content … |
The End.