Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: countdrak
  • Content: Threads
  • Order by date
  1. countdrak

    Simple Example to pass values to swf using Javascript

    I have looked at some examples here but could not find something simple. I simply want to pass text values from Javascript to my swf and then access them in the swf to do something. Can somebody please help and show me a simple mxml/html code? Just one text box value is fine, I can build on...
  2. countdrak

    MySQL Replication Pros/Cons

    I am a MYsql noob and have been reading up on MySql replication techniques and trying to decide what would be most efficient way of setting up replication. I have one master and probably will only have one slave. Can someone point me to an article that weighs out the pros & cons of using PEER...
  3. countdrak

    Load simple XML from TextInput to Datagrid

    Noob Question. I have been trying to find a simple example to load a XML file from the users computer and then have it displayed in a Datagrid. The XML file has only two nodes, for eg. <users> <firstname>Jane</firstname> <lastname>Doe</lastname> </users> I just want the data grid to display...
  4. countdrak

    Compile JSP beforehand in Tomcat 5.5

    I am java /tomcat noob! I was handed a bunch of jsp pages that need to be compiled before I can deploy it on the server. I have local tomcat 5.5 server running and all the files are in C:/tomcat/webbapps/testproject I just want to compile all the JSP pages in this directory? Can anyone guide...
  5. countdrak

    Unix FTP Sync

    I am trying to figure out if there is somebody can help me with this problem. I am trying to sync up two ftp accounts. Basically I have a hosting service which has 1/2 TB of data. I am switching to a new hosting service and trying to move everything to this new service. On windows with one of...
  6. countdrak

    Seperate DB server for Sharepoint

    I am new to sharepoint. We are using WSS 3.0 and would like to move the database to a different SQL SERVER 2000 box. Is that possible? Can anyone give me some direction on how this can be done. Thanks.
  7. countdrak

    Application.cfm not running!

    We are hosting with super cheap GODaddy.com (Sucks!). We have linux box with PHP , MYSql and CF running on the same account. For some reason I cannot declate <cfapplication> tag nither is my application.cfm file ever excuted! So none of my request.dsn variables work. Is that even possible...
  8. countdrak

    How does cfhttpparam work with a file?

    I am trying to figure out the exact nature of how cfhttp and cfhttpparam work in coldfusion. I am using cfhttp to post a file to a server. Unfortunately the header information that cfhttp sends for the file is with an extension *.tmp even though I am uploading a different file type. The...
  9. countdrak

    Cant Get Background Image to change in IE

    I have a simple script where I set a background image for a <TD> <td id="td1" style="background-image:url(images/tasd.png); width:171px; height:32px; background-repeat:no-repeat" class="title"><a onClick="javascript:changebg('td1');">Click Me </a></td> I wrote a simple script to change the...
  10. countdrak

    Cant Change DIV innerhtml! Help

    So I am using simple toggle function. To display text when a link is clicked. I am doing it over a class name because the divs are generated dynamically in a query. What I want to do is change the "Display Text" to "Close Text" but I cant seem to get it to work. Here is my js <script> var...
  11. countdrak

    Web Service to send a xml file

    I want to create a simple web service that querys my db and sends xml in the cfreturn. Is there an easy way to do it. I have seen lots of examples where string values are returned. The webservice will be consumed by a javascript on the client side. Is this easy to do? Thanks.
  12. countdrak

    Simple CF Menu

    I am trying to create a simple DB driven menu. Initially only the parent items with parentid = 0 are displayed. When the user clicks on one of the parent title links I refresh the page and display the children. Pretty straight forward. I have a recursive function, but the problem is this opens...
  13. countdrak

    Simple Web Service doesn't work!

    <cfinvoke webservice="http://www.freewebs.com/jimmy_cheng/CurrencyExchangeService.wsdl" method="getRate" returnvariable="aRate" timeout="30"> <cfinvokeargument name="country1" value="united states"/> <cfinvokeargument name="country2" value="united kingdom"/> </cfinvoke>...
  14. countdrak

    Update Multiple DIVs on a page

    I have data in different divs coming from my db using different queries. Is there anyway to update all the different divs content simultaneously when something changes on the page. I am familiar with Prototype. Any help will be great. Thanks guys.
  15. countdrak

    Relocating A parent page from IFRAME

    So I have an iframe in a page. I load a form in the iframe and once the user hits submit the values are stored in a db and at that point I want to relocate my parent page to a new page. Any ideas how I would do it after the insert. Thanks.
  16. countdrak

    Anyone done a Re-direct with a CFHTTP Post?

    I cant get it to work. The redirect never takes place. Here is my code. <cfhttp url="http://frontierhelp.com/carboniteresponse.cfm" method="POST" redirect="yes" resolveurl="yes"> <CFHTTPPARAM type="HEADER" name="User-Agent" value="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)">...
  17. countdrak

    Password Protect Link Download

    Suppose I display links to a file when somebody logs in and goes to a page. <a href = "http://mydomain/client1/1.pdf">Doc 1</a> <a href = "http://mydomain/client1/2.pdf">Doc 2</a> The page is password protected so somebody needs to log in to view the links. But this does NOT prevent someone...
  18. countdrak

    Check if an IP address is in a range

    Is there a way to check if an IP address is in a subnet range? say I have the IP range 10.10.0.0 - 10.10.255.255 and a subnet of 255.255.0.0 and am given the IP 10.10.50.1 and want to verify that it is in that range.. thanks! Is there a coldfusion way of doing this?
  19. countdrak

    Find if IP is in range

    I have the the CIDR notation. I have the cidr range. So I have 10.10.10.1/18 and the range 10.10.0.0 - 10.10.63.255 What is the algorithm to see if an IP is in that range. I am trying to write a function in Coldfusion. so I know 10.10.0.1 is in range but 12.4.2.134 is not. Can someone help...
  20. countdrak

    CIDR Calculator code

    I have a list of IP addresses with the mask bits. Something of the format A.B.C.D/N I need some code that will give me the ip addresses within that range. Please see this http://www.subnet-calculator.com/cidr.php I can type in the ip and the mask bits and gives me the range. Does anyone have...

Part and Inventory Search

Back
Top