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

    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
  4. 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
  5. 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...
  6. maneland

    Arrays

    how can I make an array like countryArray["countryName"]["provID"] = "text"?
  7. 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...
  8. 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...
  9. 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...
  10. maneland

    Sessions Problems

    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...
  11. maneland

    repeater control

    Hi: I'm using this Repeater control: <asp:repeater id=RepeaterImg runat="server" > <headertemplate> <table border="0" cellspacing="0" cellpadding="0" width="100%"> </headertemplate> <ItemTemplate>...

Part and Inventory Search

Back
Top