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 SkipVought 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: copeZero
  • Order by date
  1. copeZero

    get selectedIndex

    Hi, this JS issue is driving me crazy, any reasons why i can't get the select index value of a dropDown: dobMonth.Attributes.Add("onchange"...
  2. copeZero

    regex onBlur input between 1900 and 2050

    Thanks, that looked like it took some brilliance for: 20[0-4][0-9]|2050 Do u do contract work?
  3. copeZero

    regex onBlur input between 1900 and 2050

    Hi i was wondering how one would check using regex if an input of a text box is between the numbers of 1900 and 2050 Thanks
  4. copeZero

    loading sequence issue

    Hi, i'm not sure how to resolve this, and i 'll try to explain it as simply as possible. i have a master page, that has a menu. I wanted to more flexibility for theis menu so i moved it into a control, here is an exert from the master page... <table width="100%" border="0" cellspacing="0"...
  5. copeZero

    parser error

    Hi after much reading on the error, i have had no luck trying many things. I'm using VS2005 to create the project, it now on a test server, and when i view the home page i'm getting: Parser Error Description: An error occurred during the parsing of a resource required to service this request...
  6. copeZero

    getting a parser error when deploying

    Hi i'm having issues trying to deplay teh project that buildn no problem. Wondering if someone had suggestions. Thanks This is the url that throws the error: http://localhost/member-area/ member-area is a virtual directory Error: Server Error in '/member-area' Application...
  7. copeZero

    JS and C#

    I i was wondering if there way a way tyo have these two scripts work together: string JscriptFinal = "<script type='text/javascript'>window.onload=function(){alert('asdf');}</script>"; Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "key", JscriptFinal); AND...
  8. copeZero

    for loop comparison

    ahh i can do a direct comparison with if (session.contents != something) and it references each item in the collection, fabulous!
  9. copeZero

    for loop comparison

    Hi all, and i have to say, thats to everyone who has educated me here! I have an issue with comparing against a session name (not the value) This is what i have: if (listpc[index].PieColour != null && a1 < 1) { foreach (string se in Session.Contents) { if (se != listpc[index].PieLabel)...
  10. copeZero

    setting JS var with queryString value

    Thanks Jason, great discussion!
  11. copeZero

    MySQL and .Net

    both MS access and MySql have a concurrent user limt which is low, access being lower, i've never had a problem with t-sql on mysql, read somewhere that mysql eats more resourses that sql server for processing, with mysql use a power house computer.
  12. copeZero

    setting JS var with queryString value

    Hi why doesn't this work in the front page (not code behind page)? <script language="javascript"> var tempASP = <%=Request.QueryString["Riskid"];%>; ... </script> Thanks
  13. copeZero

    object collection with multiple definitions, no Length

    Thanks, it much clearer now.
  14. copeZero

    object collection with multiple definitions, no Length

    Hi i have an array that contains values, but the array does not have a definition Length property, I does have a definitions for: label,slice My goal is to iterate thru the loop for response.write some xml, like so: Response.Write("<Risk><Lables>"); Response.Write("<Risks...
  15. copeZero

    array sort method

    awsome JurkMonkey!
  16. copeZero

    array sort method

    Hi I have an array and was wondering how to implemtn Array.Sort() to best help my situation... The array holds the record index from a table. So if i query the db, get the record set, the "riskz" object works like riskz[0].columnName that will return the first record from the table and the...
  17. copeZero

    can't set global array

    figired it out... in the code above instead of using an array i'm calling a function to do the work: var f:Number=0; Code: for (var i = num2; i < num; i++) { f = f +20; chekbx(this.firstChild.childNodes.childNodes[0].attributes.modname, f); } Code: function chekbx(val,num){ var...
  18. copeZero

    can't set global array

    This is the darnest think, so why is it that one cannot set a global array in a function, ive tried many ways but nothing works... grrr, i just can't figure this out... var xmlDoc:XML = new XML(); System.useCodepage = true; xmlDoc.ignoreWhite = true; xmlDoc.onLoad = function(ok:Boolean) {...
  19. copeZero

    check boxes

    forgot to mention that am using: import mx.controls.CheckBox; Thanks
  20. copeZero

    check boxes

    Thanks oldnewbie, after reading that article i attempted (today) to produce something. Was wondering if you oldnewbie eyes can take a look at it, thanks: This is the xml i'm toying with: <Risk> <Lables> <Risks name="BMI" change="10" modname=""></Risks> </Lables>...

Part and Inventory Search

Back
Top