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 strongm 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
  • Content: Threads
  • 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

    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
  3. 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"...
  4. 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...
  5. 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...
  6. 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...
  7. 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)...
  8. 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
  9. 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...
  10. 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...
  11. 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) {...
  12. copeZero

    check boxes

    Hi I was wondering if it was possible to create check box dynamically? I have an xml that i will be iterating thru and for each node i would like to create a text box on the main stage. How would i go about this? Thanks for the insight!
  13. copeZero

    menu component

    Hi, i have an fla given to me. On the main stage there is a menu component, and it has a funny TM symbol attached to it. No matter how i publish the file the menu is not showing, what going on? THanks Thanks
  14. copeZero

    object of executescalar always null

    Hi i've been fighting with this one, no matter what i do i can't get the return value, this i swhat i have: This is the storeProc which does update the table with the parameter in given in the c# code: CREATE PROCEDURE dbo.sp_StoreSec ( @MemberID int, @SecurStr nvarchar(300), @Pass...
  15. copeZero

    returning an interger

    Hi i can't seem to get a value from this, any suggestions DECLARE @Random int; DECLARE @Upper int; DECLARE @Lower int SET @Lower = 100 SET @Upper = 150 SELECT @Random = Round(((@Upper - @Lower -1) * Rand() + @Lower), 0) RETURN GO
  16. copeZero

    comparing cookie to sessionID

    Hi there, No matter what i try i cant seem to compare the cookie value to the SessionID, ive tried: int temp2 = Convert.ToInt32(Session.SessionID); if (Convert.ToInt32(myCookie) != temp2) .... int temp2 = Convert.ToInt32(Session.SessionID); if (Convert.ToInt32(myCookie) !=...
  17. copeZero

    updating where the date is the oldest

    Hi i'm using smallDateTime for column InsertDate, In the table i have 4 MID rows, each with a CredStr & MID I'm trying to update the record where the InsertDate is the oldest date, this is what i have, any thoughts on this one? Thanks. UPDATE [_Credent] SET CredtStr=@CredStr WHERE (Selete...
  18. copeZero

    procedure syntax

    Hi i'm getting an error on line one, stating incorect syntax near ( Using sql2k, any suggstions, thanks. CREATE PROCEDURE dbo.sp_StoreSecurity ( @MemberID int, @SecurStr nvarchar(300), @Pass nvarchar(40), @Question nvarchar(50), @Answer nvarchar(40) ) AS SET NOCOUNT ON INSERT INTO [_Credent]...
  19. copeZero

    dynamically set getElementById

    Hi i'm passing the id of the elemnet into a function (as fieldVal) and am tying to set the focus of that element during the function, i've tinkered with it for a while, must be something obvious? any ideas on this document.getElementById(''+fieldVal+'').focus();
  20. copeZero

    splitting and determining

    Hi i'm trying to split a return db value. I've tried reworking the code but nothing seems to work. Maybe a more refreshed brain can assist? Below is an example of what i've tried, the returned value format: bit|char (eg. "0|John Smith" i need to determine if the bit value returned is zero or...

Part and Inventory Search

Back
Top