- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Web designer
- Interests
- Remote Controlled Trucks, Cars, and Plans
- PC Specs
- Thermaltake Xaser 3 AMD 3400+ ASUS A8R-MVP Motherboard ATI Radeon 1800xt 240GB Hard drive 2 GB's of…
124 Posted Topics
Re: You guys do release you posted this in a ASP forum. ASP and ASP.NET are COMPLETELY different languages. If you want to pass your .Net class, don't get the two confused. | |
Re: Now im confused. Are you looking for something to code? | |
Re: I always say NO because a lot of hosts dont give you full control!!! Ive known so many people that lost their domain name simply because their host would not renew it! Use a real domain register like godaddy.com | |
Re: The only thing that affects lantecy/ping is the server you are playing on. The lantecy/ping is the response time you get from a server in the game. A lot of things can affect your lantecy/ping. For example: The distance between you and the server The speed of your internet connection … | |
Re: The file will only show up if you are trying to view the files as "Thumbnails". If they are set to view as "List" it should not show up. | |
Re: I use WinXP Pro for everything. I code ASP/SQL and run IIS and MSSQL Server on my computer during the day, then when i need a break i play a bunch of online games. Some really old and some new. I even play some old Win 95 and 98 games … | |
Re: Check here: [url]http://www.batteryvalues.com/IBM-laptop-models.aspx[/url] | |
Re: Most versions of IE do support Opacity but never correctly implemented it so it requires a few work arounds to work fully. [code=css] .myImage { filter: Alpha(Opacity=80); //IE opacity: 0.8;//other browsers that actually use standards } [/code] | |
Re: There isnt a "best seo site in the world" but there are a lot of websites that can help you with SEO. Here is a website that has a lot of information and tools for SEO, [url]http://www.seochat.com/[/url] | |
Re: I use [url="http://www.trendmicro.com"]http://www.trendmicro.com[/url] for my anti-virus | |
Re: If the website loading in the URL has a fixed size then you would have to code something to dig through the iframe and remove the sites fixed width. But if the sites content is bigger than the frame, there really isnt much you can do besides setting "overflow: hidden" … | |
Re: So are you trying to loop through the records so its 2 records a single row? I really dont understand what you are trying to do... :s | |
I created this code because i was bored and wanted to try something with some code and i ended up creating this little code snip. [B] Code from: [URL]http://www.iportalx.net[/URL][/B] | |
Learn how to loop anything you want sertain number of times. In this example im gonna show you a simple next and loop that changes the font size. | |
This is a neat little script that will tell you how many active users you have on your site. You do need a webhost that supports the global.asa file! Most free hosts dont. [B]Code From: [URL="http://http://www.iportalx.net"]http://www.iportalx.net[/URL][/B] | |
Learn how to take the Now() command and format it in a bunch of differnt ways. [B]Code from: [URL]http://www.iportalx.net[/URL][/B] | |
Re: I don't believe there is. Win98 sucks for security... you can even get by user passwords really easy :rolleyes: | |
Re: Don't use CDONTS... it was replaced years ago by CDOSYS. | |
Re: Cache can improvement as it uses less database calls. Cache will always use more memory but if you do it properly it does help improve speed. | |
Re: You guys sure give up easy :) I wrote this little script for you guys, examples included. [code=asp] <% 'Fetch and save this image Call fetchDocument("http://www.iportalx.net/images/iportalx-welcome.gif", Server.MapPath("./")) 'Fetech and save this document Call fetchDocument("http://www.daniweb.com/forums/thread153966.html", Server.MapPath("./")) 'Created by Drew Gauderman 'Website: [url]http://www.iportalx.net[/url] Function fetchDocument(strDocURL, strSavePath) 'Create the XMLHTTP object to fetch … | |
Re: So you want someone else to do all the work for you? I suggest you take a look at all the tutorials on aspin.com or hotscripts.com | |
Re: ASPX is ASP.net and not ASP. Please post in the correct forum. | |
Re: Moderators need to move this to the CSS forum because i don't see how this fits into ASP. | |
Re: Here is a new function that actually loops through the checkboxes: [code=Javascript] function updateopen() { var c_value = ""; var cb = document.getres.checkbox; for (var i=0; i < document.getres.length ; i++) { if (document.myForm[i].type=="checkbox" && document.getres.checkbox[i].checked) { c_value += document.getres.checkbox[i].value + "\n"; }; }; alert(c_value); //window.opener.document.getElementbyId(numbe33).value = c_value //window.close(); } … | |
Re: Are you using any Javascript frameworks in your pages? If not then you need to learn how to use XMLHTTP. There are plenty of tutorials on google and im 99.99% sure there are dozens of php and ajax search tutorials. | |
Re: You know google has TONS of examples of how to do this, but here is something i wrote really fast. [code] setInterval(function() { document.getElementById('ImageID').src='imagepath?rd=' + new Date() }, 2000) [/code] | |
Re: I think what you are looking for is "checked". [code]document.FromName.checkBoxName.checked[/code] That will return "true" or "false" if the checkbox is enabled or not. | |
Re: It really helps if you can post some code, or link to some code, and include any error messages. | |
Re: Please post this question in the .Net forum. You might have more success getting an answer. | |
Re: Don't forget my favorite, [URL="http://www.mootools.net"]MooTools[/URL] | |
Re: Well thats simpe enough, [code] <iframe id="result" style="width:400px;" scrolling="no" frameborder="0" onload="this.scrolling='auto'"></iframe>[/code] untested but should work | |
Re: I don't see anything wrong with the page... | |
Re: If you are knew to developing websites you will find that IE uses a really screwed up standards for HTML/CSS and you will have to debug your sites in both IE and FireFox. But i can not help much, since you didn't post any URLs, code, or even error messages. | |
Re: The only ways are to use form, cookie, or querystring. | |
Re: I suggest you take a look at some of the bigger JavaScript Frameworks that can help you speed up development and do all the hard stuff. Some of the top ones: script.aculo.us ([url]http://script.aculo.us/[/url]) Prototype ([url]http://www.prototypejs.org/[/url]) Moo Tools ([url]http://www.mootools.net/[/url]) jQuery ([url]http://jquery.com/[/url]) | |
Re: Using the "visibility" property only hides the element, but the space it uses will still be taken up and leave a blank gap in the page. The easiest way to hide/open a DIV is: [code]<a href="#" onclick="var myBox=document.getElementById('myDiv');myBox.style.display=(myBox.style.display=='none' ? 'block': 'none');return false;">Hide or Show Box</a> <div id="myDiv">this will open or … | |
Re: I use MooTools for my JS and there is a "Scroll" class that can be used to scroll to certain elements or coordinates and smoothly. It would be very easy to setup something like what you described. Maybe you should look to see if jQuery (or use MooTools) has something … | |
Re: Are you wanting a "single file solution" for download, or upload? You could just zip them up so someone can download a "single file solution". You can easly add the CSS/Javascript into the HTML file, but there is no way to save the images inside of the html file. | |
Re: This topic really isnt related to ASP but.... Is IIS set to the default wwwroot folder? (C:\inetpub\wwwroot) | |
Re: ASP does not use a Bin folder. You would have to register the DLL with the .net server in a command line (i cant remember). But even then, the dll would still need to be coded correctly to intergrade with Classic ASP. Good changes are, if you dont know the … | |
Re: You should post this in the ASP.Net section [url]http://www.daniweb.com/forums/forum18.html[/url] | |
Re: Any version of IIS will run ASP. IIS 5.0 is extremly old. | |
Re: You can not disable the boxes. They are part of the browser and there is nothing you can do to disable them. No code in the world can disable them. | |
![]() | Re: I would like to test it, but of course i never know where or how to get the information on beta testing :( |
Re: MySQL will work with ASP, but it was not designed for asp. Your better off using MSSQL. | |
Re: DONT EVER USE 2CHECKOUT.COM!! I used them for a few months and they screwed me out of almost $2000!!!! I sell eGoods so there really is no way for me to prove that the user received the item. So anyone that buys anything from me could say they never received … | |
Here are some usefull registery tweaks i use for Windows XP. [code];Speed up shutdown [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control] "WaitToKillServiceTimeout"="3000"[/code] [code];Do not use Simple File Sharing [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa] "forceguest"=dword:00000000[/code] [code];Disable Messenger Service (to stop spam. Does not affect MSN or Windows Messenger) [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Messenger] "Start"=dword:00000004[/code] [code];Change MenuShowDelay (Start Menu load speed) [HKEY_CURRENT_USER\Control Panel\Desktop] "MenuShowDelay"="2"[/code] [b] Make … |
The End.