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: *

  1. chebbi

    datatable.select problem.

    Hi all I have to run a sql query which looks like select * from name where name like '[0-9]%' This works fine in query analyser and returns me all names starting with numerical charater but if i put it in datatable.select as below i get the error "The string pattern is invalid '[0-9]%'. My...
  2. chebbi

    passing pdf file between webservice and the web application.

    Hi all I have a pdf document which i need to pass from the web service to the calling application(Both are on different network which is why i need web service to transport file,Making pdf file a virtual directory for http call is not an option.). I was able to get network file info and could...
  3. chebbi

    Displaying files from the network.

    Hi all Here's my scenario: I have a web application(Internet website not intranet or extranet) which needs to show a pdf file sitting in our network. We donot want the user to see the path for the pdf nor is making the folder where pdf resides a virtual directory a option. Having said that...
  4. chebbi

    Bulk Insert - Fixed Width File

    sbushway..Did you find the solution to your problem. Iam trying to do the exact same thing. If you have found the solution and if you can share with me your text and format file then that would be great. Badrinath Chebbi http://www.bmchebbi.com
  5. chebbi

    Field validation

    Hi all I have a page which has 7 required field validation controls. Is there anyway in i can find out if any of these is not valid on post back in my code behind with one statement or do i have to valiodate each control and find out if anyone is false? I was looking for something like...
  6. chebbi

    cfhttp data lost

    Hi carl Thanks gfor ur time but ya this has nothing to do with .net service since when i get the result back in a .net page it works. It is cold fusion which is losing data. Ya i could have tried cfinvoke but unfortunately we dont run mx. Anyways thanks for ur time. Badrinath Chebbi...
  7. chebbi

    cfhttp data lost

    Nope carl, that didnt work either. Badrinath Chebbi http://www.bmchebbi.com
  8. chebbi

    cfhttp data lost

    Hi Carl Thanks for your time. I actually need the exception sentence "Divide by zero". I dont find it in any cfhttp variable coming back. Iam getting 500 as status code but i really need that exception sentence. I dont know where that is getting lost. Badrinath Chebbi...
  9. chebbi

    cfhttp data lost

    Hi Iam using cfhttp to talk to a .net web service which returns either string or exception. When it returns string i get data correctly but when it returns exception i need to capture the exception string. Somehow cold fusion loses that data and returns me "500 Internal Server Error&quot...
  10. chebbi

    http error code handling.

    Hi Is there a way in cold fusion to handle http errors. Like once the page loads at the start of the page can i have a script tyo detect a particular http code generated by the page and take actions accordingly like redirecting to a different page or something. Typically i would like to handle...
  11. chebbi

    http error code handling.

    Hi Is there a way in javascript to handle http errors. Like once the page loads at the start of the page can i have a script tyo detect a particular http code generated by the page and take actions accordingly like redirecting to a different page or something. Typically i would like to handle...
  12. chebbi

    Dynamic variable.

    Hi all I have a webservice on one of our servers and i instantiate that service by using servername.webservicename ws = new webservicename(); I need to be able to put the server name from some application variable and not hard code it here. Any ideas on how to do it? I tried using...
  13. chebbi

    Storing array object in hash table

    Hi I want to store array object in hash table and then create application variables based on values in the array. Iam uanble to store array object in hash table. My code is Manager.Add("AUserManager",AUserManager); IDictionaryEnumerator myHashEnumerator = Manager.GetEnumerator()...
  14. chebbi

    Adding radiobutton control

    How can i add asp:radiobutton control in my code behind file of my ascx page dynamically?I instantiaited the templatecolumn,radiobutton and datagrid successfully but iam unable to add radiobutton to templatecolumn because we need itemtemplte inside templatecolumn. Anyone has any ideas...
  15. chebbi

    Hi Which namespace is response o

    Hi Which namespace is response object in? Iam tryoing to use response.redirect("somepage.aspx") but it keeps on giving the error The type or namespace name 'response' could not be found (are you missing a using directive or an assembly reference?) which namspace do i have to import...
  16. chebbi

    document.write problem

    Nope, That didnt work either. Badrinath Chebbi http://www.bmchebbi.com
  17. chebbi

    document.write problem

    Hi Iam trying to build a row dynamically using document.write( '<tr><td onclick=groupby(&quot;Birth Date&quot;,6)></td></tr>' ); the problem is that on IE6 it breaks because of the &quot;Birth date&quot; parameter. For one word parameter its good. Any ideas? Badrinath Chebbi...
  18. chebbi

    onclick passing parameters through a function

    Hi Iam building a dynamic di tag with a onclick attribute inside a for loop. This onclcik attribute calls a function by sending 2 parameters. for ex: for (i=1;i<=9;i++) { var tempparam1=i; document.write(&quot;<tr><td onclick=groupby(tempparam1)></td></tr>&quot;); } strangely everytime the...
  19. chebbi

    OnDragDrop

    Iam trying to use ondragdrop event on IE6 but the event doesnt seemed to be getting fired at all. I have ondragdrop in the body tag which calls a function. Also i tried window.ondragdrop in the head section but for no use. Any thoughts will be highly appreciated. Badrinath Chebbi...
  20. chebbi

    Blob datatype equivalent

    Hi In my application we have the resume upload feature where people can copy and paste their test formattted resume in a textarea and submit the form. Thistextarea content gets stored in a sql server2000 database. The problem is that the field in he database where this resume gets stored is set...

Part and Inventory Search

Back
Top