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 Mike Lewis 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. mckreddy

    ".dll" extension for a web page

    By using lowerlevel (ISAPI) Coding you will write the whole functionlity (which we write in asp) in a c++ and make them as a dll. for more details see links on ISAPI programming M.Krishna Reddy VisualSoft Technologies Ltd. Hyderabad, India -500 016 e-mail : mckreddy@dev.vsofti.stph.net url...
  2. mckreddy

    Blank Lines within Email Body

    Method -1. use the combination of chr(10)&amp;chr(13) to display a single line break Method-2. include <p> tag where the single line space is required and set the bodyformat and mailformat properties to zero of mail object. Method-3 Use Vbcrlf as asp variable in the string. M.Krishna...
  3. mckreddy

    Msgbox - Permission Denied?

    Your asp code will execute on the server, its not possible to display messagebox on the client side. If you want to display message to the user use any of the following methods METHOD-1 To display on the browser response.write (&quot;YOUR MESSAGE&quot;) METHOD-2 To display as message...
  4. mckreddy

    Problems Making a global variable...

    modify your code as follows In global.asa Sub Session_OnStart session(&quot;Datasource&quot;) =&quot;Dsn=main;UID=vsuser;PWD=cat5500&quot; End Sub And within the ASP Page <% Response.write (session(&quot;datasource&quot;)) %> M.Krishna Reddy VisualSoft Technologies Ltd. Hyderabad...
  5. mckreddy

    Error during file upload

    If you are using Windows 2000 servers check the permissions are set to everyone write permission for that folder. if u are using other than windows 2000 check the following two methods 1. Disable password synchronization for the Internet Information Server 4.0 application. Use the following...
  6. mckreddy

    check logged in status without &quot;Redirect&quot;

    You can use javascript code instead of asp coding response.redirect methoded.<br><br>suppose u are redirecting the user to &quot;login.asp&quot; page by checking a condition.<br>&lt;% If (some condition) Then <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Redirect...
  7. mckreddy

    error detection and correction

    There are two possibilitys of testing the data which user entered.<br>&nbsp;1. using vbscript/ASP, You can use isNumeric(data to be checked). It returns true if the entered data can be converted into numric format.<br><br>&nbsp;&nbsp;2. Using JavaScript, use javascript isNaN(data to be checked)...
  8. mckreddy

    What dll's should be added to run Crystal Report 8.0 in our product

    We are using Crystal Report 8.0 in our product. While giving setup of our product to the client what dll's should be added to our product to run Crystal Report, beside our dlls.
  9. mckreddy

    Regarding Crystal Report 7.0 dlls for our product setup

    We are using Crystal Report 7.0 in our project. What dll's<br>should be included in my setup program to run Crystal Reports in my project.

Part and Inventory Search

Back
Top