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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ayanroy

  1. ayanroy

    Error while running JSF Web Application

    I have built a JSF web application on Netbeans 5.0m and while trying to run in Tomcat 5, it is giving error messages-- org.apache.jasper.JasperException: Unable to read TLD "META-INF/html_basic.tld" from JAR file "file:/C:/My_Project_JSF/jsfAppDemo/build/web/WEB-INF/lib/jsf-impl.jar"...
  2. ayanroy

    updating rows

    Try using this:- objConn.ConnectionTimeout = 60 'Can be increased objConn.CommandTimeout = 60 ' Can be increased too Ayan Kumar Roy India
  3. ayanroy

    Access denied error

    I am not using NTFS partition here. Ayan Kumar Roy India
  4. ayanroy

    Access denied error

    Hi all, I am bit new to ASP.net, my problem is that suddenly my web application is generating error:- Access to the path "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\WebApplication1\1656a8be\b7027847\hash.web" is denied. Occasionally, the application is running fine...
  5. ayanroy

    Using ActiveX dll in ASP

    Hi all, I have created an ActiveX dll in VB for using in my asp page. After creating , I have registered that .dll also using regsvr32 command. But when I am trying to use that in my ASP page using Server.CreateObject() command, it is showing error that Invalid Class String. Please suggest...
  6. ayanroy

    Getting problem connecting with SQL Server

    Sorry, buddy. The problem still remains unsolved. I want to connect my ASP page to a SQL server which is in my Local Area Network. The ASP script will fetch the data from a specified database table & display the data in the page. Ayan Kumar Roy India
  7. ayanroy

    Getting problem connecting with SQL Server

    Hi all, While connecting my asp page with SQL Server, I am getting following error:- Error Type: Microsoft OLE DB Provider for SQL Server (0x80004005) Timeout expired My Connection String is :- Provider=SQLOLEDB.1;SERVER=MYSERVER;DATABASE=Northwind;User ID=sa;PWD=; I am stuck here. Kindly...
  8. ayanroy

    Counting records of a subquery result

    Hi all, I have a search query which joins two tables to return a set of records. I am displaying the records in a Paged DataGrid . I want to show the total number of records returned in that query. I am using DataGrid.Items.Count , but that is returning the no. of records in the current page...
  9. ayanroy

    show alert if two same value choosen

    write a function and call the function on onChange event handler in the dropdown lists. Ayan Kumar Roy India
  10. ayanroy

    Text file rows to database records?

    Hi all, I have got a text file in comma delimited format , I am working on a ASP file which will read that file and enter records into the database. How is it possible? Ayan Kumar Roy India
  11. ayanroy

    Cookies are easy to use in ASP?

    Pls check the code for the Expires attribute of the cookie. or Try using a Cookies collection like:- <% Response.Cookies("User")("MatchDate") = Request.Form("txtMatchDate") Response.Cookies("User")("HomeTeam") = Request.Form("cboHomeTeam") Response.Cookies("User")("VisitingTeam") =...
  12. ayanroy

    Cookies are easy to use in ASP?

    Check this, this is working fine. Page 1(form.asp) ---------------------------------------------------- <% Response.Cookies("MatchDate") = Request.Form("txtMatchDate") Response.Cookies("HomeTeam") = Request.Form("cboHomeTeam") Response.Cookies("VisitingTeam") = Request.Form("cboVisitingTeam")...
  13. ayanroy

    Convert animation to Movie Clip??

    Thanks Buddy, Done !
  14. ayanroy

    Convert animation to Movie Clip??

    We can convert any shape/object in stage to a symbol by pressing F8, but suppose we have a Motion Tweening/Shape Tweening animation in stage, I want to convert it to a Movie Clip, pressing F8 will only convert the selected frame , not the entire animation, any one has some better idea pls respond
  15. ayanroy

    Shapes Question - Beginner

    try using knife tool , divide the rectangle into two separate objects then fill both parts with different colors of ur choice

Part and Inventory Search

Back
Top