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

    is too long. Maximum length is 128. Error

    thanks and If I want to use double quote, what should I change in the Update code? Update Table Set Field = 'the name is ""Peter"".' Where Id = 1 that´s right?
  2. maneland

    is too long. Maximum length is 128 Error

    I try to Update a field of a table using this statement UPDATE Table SET field="Forget.......(long text)" WHERE id=1 and I get this error The identifier that starts with 'Forget your bus excursions. Marta Patiño takes a trip out of this world at La Laguna's Science Museum. In April 2001...
  3. maneland

    is too long. Maximum length is 128. Error

    I try to Update a field of a table using this statement UPDATE Table SET field="Forget.......(long text)" WHERE id=1 and I get this error The identifier that starts with 'Forget your bus excursions. Marta Patiño takes a trip out of this world at La Laguna's Science Museum. In April 2001...
  4. maneland

    BULK INSERT

    Can I insert an external file using BULK INSERT? For example BULK INSERT Table FROM 'http://www.site.com/file.csv' WITH (FIELDTERMINATOR = ',') Thanks
  5. maneland

    Insert Long Text

    Can I insert an external file using BULK INSERT? For example BULK INSERT Table FROM 'http://www.site.com/file.csv' WITH (FIELDTERMINATOR = ',') Thanks
  6. maneland

    Insert Long Text

    Hi: I would like to enter a long text to my SQL Server Tables with text fields using the Enterprise Manager or Query Analyser Tools but I can´t. Is there other tools in order to insert long text in my SQL Server 2000 data base? Thanks in advance
  7. maneland

    Enumerator Current property

    This is the example I´m using now: ArrayList arrayList = new ArrayList(countryArray.Keys); IEnumerator listEnumerator = arrayList.GetEnumerator(); while (listEnumerator.MoveNext()) { dr = dt.NewRow(); codeInt = getHBDestCode(listEnumerator.Current.ToString()); ........... The funtion...
  8. maneland

    Enumerator Current property

    Yes. I was tying but I get this error: CS1502: The best overloaded method match for 'ASP.destinations_aspx.getHBDestCode(string)' has some invalid arguments Thanks in advance
  9. maneland

    Enumerator Current property

    I would like to convert the Enumerator.Current to String in order to use it as parameter of the getHBDestCode function. Thanks in advance
  10. maneland

    Enumerator Current property

    I'm using the example below: ArrayList arrayList = new ArrayList(countryArray.Keys); IEnumerator listEnumerator = arrayList.GetEnumerator(); while (listEnumerator.MoveNext()) { dr = dt.NewRow(); codeInt = getHBDestCode(listEnumerator.Current); ... The getHBDestCode() function is: private...
  11. maneland

    Arrays

    how can I make an array like countryArray["countryName"]["provID"] = "text"?
  12. maneland

    __VIEWSTATE no valid

    Is There any way to submit a <form runat="server"... to other aspx file that receive the form parameters?
  13. maneland

    __VIEWSTATE no valid

    I'm trying to send an html form to an aspx page but everything is Ok only for hours. After hours I get an error. - Authentication of viewstate failed. 1) If this is a cluster, edit <machineKey> configuration so all servers use the same validationKey and validation algorithm. AutoGenerate...
  14. maneland

    c# equivalent

    It does not work. I got some errors
  15. maneland

    c# equivalent

    I would like to know the c# equivalent code of the code below: set xmlhttp = server.CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "POST", servletURL, false xmlhttp.send "pXML=" & pXML & "&pCall=" & pCall ReturnedXML = xmlhttp.responseText set xmlhttp = nothing response.write ReturnedXML...
  16. maneland

    Sessions in .aspx and .cs

    Hi: I´m modifying a project already done and I can´t get the .cs files, just the .dll file. When I try to get the session in the aspx files I need to use this: Proyecto.Internacional.Idioma.idioma, but this sentence is not posible to use in the new .cs files. I´m trying to use...
  17. maneland

    Sessions Problems

    How?

Part and Inventory Search

Back
Top