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

    CAN not start Asp.net state service

    Tried to start "asp.net State service" either throught the serice panel or command line, always got "the service is not responsing to the control function". the .net framwork of v1.1.4322 and sp1 and 1.1 hotfix (KB886903) are installed. Aspx pages which doesn't need the state service are...
  2. yuli1104

    IsNumeric is not working

    Hello, Is there anything wrong with IsNumeric() function in VB6. Isnumeric() is used in many applications of our company. It seems not working properly. For example, 181D59 is not a numeric,when isnumeric(181D59) returns true, it is causing problem to our application. For example, the...
  3. yuli1104

    javascript back and refresh

    Thank you bclt. but that window.history.go(-1); is equal to window.history.back(1); It is just back with no refresh.
  4. yuli1104

    javascript back and refresh

    Hello everyone, can somebody help with how to back to the previous page and refresh ? currently I used window.history.back(1); window.history.go(0); but it doesn't work. please note, I can't use document.location.href because the previous page is a dynamic...
  5. yuli1104

    VB.net compiler

    Thank you very much. It is working now after I added the reference on command line. Have a great day.
  6. yuli1104

    VB.net compiler

    Hello all, I am using WinNT and want to see how .net is working. so I downloaded .NET Framework Version 1.0 Software Development Kit (SDK) from Microsoft and installed. When I am trying to compile an example from quickstart, Imports System Imports System.ComponentModel Imports System.Drawing...
  7. yuli1104

    reopen online pdf form, the previous data exists

    I guess it is a problem unsolvable. I tried other website, for example: http://election.dos.state.fl.us/forms/index.shtml#can get a pdf and entere some information without saving, close the browser, then when I went back to that pdf, the previously entered information is there. Any thought? Thanks
  8. yuli1104

    reopen online pdf form, the previous data exists

    Thank you wjgrayson, We don't have data when creating those forms. The data is from client. If client A opens the form the first time, no data there. After client puts any data there, closes the browser, reopen the browser and redownload the form, the data is still there. Those data won't...
  9. yuli1104

    reopen online pdf form, the previous data exists

    Hello, In our website, we provide an online pdf form for clients to enter info. The problem is after clients opened one form (the form will be opened in a new browser window), fill any data, close the form (doesn't matter save the form or not), when you go back to reopen the form. The...
  10. yuli1104

    browser version : unknown ??

    Hello, I am using NT4 IE6. when I tried to run our company website on my localhost, it always say: browser not support. but If I browse to company (dev, test,production) website, everything is fine. that means my browser is ok. when I go to localhost and run the following asp to check my...
  11. yuli1104

    Newbie'squestions

    Hello, we have a intranet wich are static html pages. Now the supervisor asked me to use simple asp (no xml, no xsl) to replace those html pages. the supervisor said "just use Reponse.write ... " My first question is: I tried to convert by just change the file name from...
  12. yuli1104

    SQL server 2000 EVal version

    Hello, I am newbie to SQl server. I have been working with Oracle for 2.5 years. I have sql server 7 client tools installed on my computer so I can do some query with Query analyzer or EM by connecting to a DEV server. I don't have enough priviledge to do something such as schedule a job...
  13. yuli1104

    sending email with MAPI.Session

    Hello, please help with me part of my test.asp code: Set MapiObj = CreateObject("MAPI.Session") vstrExchangeSvr = "prd01" vstrExchangeMailBox = "Myalias" MapiObj.Logon "", "", False, True, 0, True, "prd01" & VBLF &...
  14. yuli1104

    How to convert a pdf with form fields to Word

    Hello, I have a pdf form with labels and text boxes. For example, "First Name" followed by a text box, "age" followed by a text box. After users download the pdf from the web, the users can input their infomation into those text boxes. There are conditions associated...
  15. yuli1104

    how to display 123&a-m-p; to be 123& in xsl

    Hello, I tried to display a variable's value in a text box by using: <xsl:variable name=&quot;var1&quot; select=&quot;slisc/clientRefNo&quot; /> <input type=&quot;text&quot; size=&quot;12&quot; name=&quot;txtCliRefNo&quot; maxlength=&quot;12&quot;> <xsl:attribute name=&quot;value&quot;>...
  16. yuli1104

    Server.htmlDecode help. Urgent

    Hello, In my asp page, I get client reference # input and save to a session variable like this: strClientRef = server.HTMLEncode(Trim(Request(&quot;txtCliRefNo&quot;))) Session(Application(&quot;cstCURRCLIREFNO&quot;)) = strClientRef Any character is allowed in the...
  17. yuli1104

    Debug dll in an asp page.

    Hello, I am posting this question again because I can't figure it out after a whole day. I am using Win2k server. I have an formslogin.asp page: strUsername = Request(&quot;userName&quot;) strPassword = Request(&quot;password&quot;) strClientNumber =...
  18. yuli1104

    Asp call a dll, how to debug the dll

    Thank you GillyInOz for your reply. I unregistered the dll and restart the PWS to remove it completely from the memory. Then I go to my login page, it said that Server.CreateObject failed. Ok, that is what I expected. Then I run the vb project and expect that the login page will use the VB...
  19. yuli1104

    Asp call a dll, how to debug the dll

    Hello, In my local web server login.asp page, it calls a A.dll which is registered on my local machine. Now I want to go throught the A.dll code so I set a stop point in the asp page. I have the source code of A.dll and I open it in VB IDE and set a break point at function GetSeqNoVnt and...
  20. yuli1104

    Can this be automated?

    Thank you very much. It works very well on my computer. I will do some research to see if I can do the linking. Thank you !!! Yuli

Part and Inventory Search

Back
Top