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: chebbi
  • Content: Threads
  • Order by date
  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

    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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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()...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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...
  16. chebbi

    HTML tag inside value of INPUT tag

    Hi I neeed to put a html tag iside the value of a input tag like below <input type=&quot;text&quot; value=&quot;<font color='red'>redfont</font>&quot;> IE hadles this well and applies the font to the value but Netscape throws out the entie value content with html tag traetting this as sa...
  17. chebbi

    Accessing clipboard contents

    Hi Does anyone know how we can access the contents of clipboard using javascript? Badrinath Chebbi http://www.bmchebbi.com
  18. chebbi

    Replace function

    Hi All How do u replace a string with a html tag?i need to replace a part of innerHTML text with a font tag. For example if i need to replace text inside a table cell(plain cell with only text in it) by grabbing its value using innerHTML property how do i replace say first 3 characters with a...
  19. chebbi

    createTextRange() in a &lt;TD&gt;

    Hi all I want to use createTextRange method on the text inside a cell(td) and this cell has plain text in it so that i can use select() method on this range created. However createTextRange can be used only on textarea,button,input and body objects. If anyone can tel me the workaround for this...
  20. chebbi

    createTextNode() in a &lt;TD&gt;

    Hi all I want to use createTextNode method on the text inside a cell(td) and this cell has plain text in it so that i can use select() method on this range created. However createTextNode can be used only on textarea,button,input and body objects. If anyone can tel me the workaround for this...

Part and Inventory Search

Back
Top