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

    HTTP-POST with Cookies

    I use HttpWebRequest and HttpWebResponse. My problem is that I get "The browser you are using is rejecting cookies". Thought I used CookieContainer to accept cookies. Can anyone help? Thanks
  2. abs2003

    Math.Floor Or else?

    Hi everyone, How can round numbers like.. 10.1 to 10 10.4 to 10 10.5 to 10 10.7 to 10 10.0 to 10 Yes, I can use Math.Floor. But it won't work with converting 10.0 to 10. Any idea? Thank you
  3. abs2003

    Can xslt have nested loops?

    Hello all, I know this may be very simple but I don't know how? I have this XML file: <?xml version="1.0" ?> - <ASSORTMENT> - <FIXEDASSORTMENT> <DESCRIPTION>NACS SMALL ASSORTMENT</DESCRIPTION> <COST>0.00</COST> <ITEMNO>954469N</ITEMNO> - <ITEMS> <ITEM>$4.99...
  4. abs2003

    Left function for XSLT

    Can display just left 10 characters of information from XML using XSLT style sheet?
  5. abs2003

    Speech SAPI says &quot;Blah&quot;

    I am taking advantage of .NET framework 1.1 speech component. No matter what I try to get it to say, it only says "Blah"? Just like retarted computer.
  6. abs2003

    Select and update functions in one stored proc

    I don't know if this is possible. 1. select top 100 * from a table. 2. update field on a table as 'in-process' for all 100 records 3. pass those 100 records to my application. all this has to be done in stored proc. abs
  7. abs2003

    Regular Expression for date YYYY-MM-DD

    Hi all, How do I check date such as '2005-08-11' using Regular Expression? Thank you, abs
  8. abs2003

    What's wrong with my stored proc?

    I have stored proc CREATE PROCEDURE [dbo].[bookstore_select_Order_BySchoolName] @SchoolName varchar(255) AS SELECT Orders.OrderID, Orders.dcOrderNumber, Orders.BilltoName, Orders.BilltoAddr1, Orders.BilltoCity, Orders.BilltoState, Orders.ccAmount, Orders.Total...
  9. abs2003

    Pass search string to stored proc, but ....

    Hello all, Someone out there may have the same question. I have ASP.NET advance search page which contains 10 different textboxes. I build a query string bases on this textboxes. I submit to stored proc to pull these records. The problem is if a user enter 'delete * ' or something like that...
  10. abs2003

    WebDav and MS-Exchange tasks

    I'm using WebDav to get a collection of Task "DAV:Href". I have tried to use httppost to get task information. I ran into un-authorized page issue. Any idea what method I can use to get a hold of task information from MS-Exchange 2003? Thank you, abs
  11. abs2003

    Merge two XML files

    I have two XML files... <BookList> <Course Name="History 100" /> </BookList> and <Search> <SearchResult> <PageNumber>1</PageNumber> <RecordsPerPage>10</RecordsPerPage> <TotalRecords>2</TotalRecords> <ItemNumber>000007U</ItemNumber> <ISBN>0205092403</ISBN>...
  12. abs2003

    Insert NULL value into Stored Proc parameter datatype uniqueidentifier

    How can I insert NULL value into Stored Proc parameter datatype uniqueidentifier. My stored proc REATE PROCEDURE [bookstore_insert_WebList] ( @ParentID [uniqueidentifier], @MasterID [uniqueidentifier], @ListLevel [int], My code tmpCommand.Parameters.Add(New...
  13. abs2003

    No event fired at first click of image button.

    Hello all, Weird problem I ever came across. I have an image button. When click for the first time, it doesn't fire. But second time around it does fire. Have anyone ever have this problem?
  14. abs2003

    Change date format in XSLT

    Hi all, How can format my date as mm/dd/yyyy in XSLT? My SQL Server's datetime field contains "5/3/2005 2:48:41 PM". My XSLT code <xsl:value-of select="StartDate"/>. My output: "2005-05-03T14:48:41.0000000-04:00" which looks weird. Help please, abs
  15. abs2003

    Open new window from XSLT

    Hi everybody, Remember in HTML you can put tag <a href="www.somthing.com" target="_blank"> How can I do the same on XSLT file? Thank you, ab
  16. abs2003

    Is either not valid or not registered

    Hi all, I wrote a Windows Service as filewatcher which also will call DTS package on SQL Server. I was able to excute it on my development box. When I deployed the application on production, I got an error "COM object with CLSID {....} is either not valid or not registered". I checked to make...
  17. abs2003

    Time conversion in SQL (urgent)

    Hi all, My SQL database table contains String data such as January 2005 March 2006 April 2005 and so on.. I need to run a query to pull data from this table SORTED by this field as datetime. How can I do this? Thank you
  18. abs2003

    Pocket PC App accessing Web Services

    I am developing Application for Pocket PC using .NET Compact Framework w/SP3. It has to consume Web Services. How can I keep the session from ending when I access it the first time? ab
  19. abs2003

    Keeping session alive for PocketPC using Web Services

    Hi all, I am using Web Services and get XML doc back. The problem is the session is ended before I make another request. Example, I submit request to login on the service. I then submit another request for search. Evidently, the session is terminated after service return the result. Can...
  20. abs2003

    Code never execute

    I have no idea why my code is not executing Dim filepath As String = "c"\temp\test.txt" Dim contentString As String = "attachment; filename=" & """" & filepath & """" Response.AddHeader("content-disposition", contentString) Response.WriteFile(filepath) Response.End() 'this is where it never...

Part and Inventory Search

Back
Top