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

    Earliest date

    Hi there, I need to write a query that will get me the earliest date for the given conditions. select i.session_date from information_session i where i.session_date = (select min(session_date)from information_session , case_applicant_info_sess where...
  2. jino

    SQL help

    Hi, I am writing a script - an applicant attends courses. The applicants may attend the sessions more than once. But I am only interested in finding out whether they have attended it at least once. select cat.session1_attended_ind from case_applicant_training cat where case_id=94 and...
  3. jino

    Oracle 91 Reports Orientation

    Hi There, I have a report that is too long (wide) and cannot be printed in ordinary paper. How do I change the orientation so that the report prints on bigger paper as a portrait? Please help and explain in detail since I am new. Thanks Jino
  4. jino

    Error while Adding Controls to a form dynamically

    Hi, I need to add labels to a form dynamically. The number of labels to be added is driven by a variable stored in session. The labels should have text like "Label 1", Label 2", "Label 3" and so forth. I am trying to create these controls in the page_load event. But it throws an unhandled...
  5. jino

    Oracle Newbie

    Hi there, I am completely new to Oracle technology. One of my colleagues suggested that I use Oracle lite for my web application. I downloaded and installed the software on my machine. But I cannot find any sample databases on any of the folders. How do I create a new database? Can i use SQL...
  6. jino

    User Control Issue

    Hi, I am hosting an ASP.NET application as part of a website. The website is maintained by a third party. My application has to fit into these web pages - by keeping the structure(left menu, right menu and images on top) of the pages similar. There are some banners that run across the top of...
  7. jino

    Adding User Control Programmatically

    Hi, I have been reading about the AddHandler methods. But all the examples I looked into are directly dealing with server controls rather than an user control. Maybe it is too simple, that I did not understand. My Usercontrol 'myControl1' has two dropdowns - 'dropDown1' and 'dropDown2'. I...
  8. jino

    Adding User Control Programmatically

    Hi, The user control I am adding has a drop down list. I want to add the selected value of the drop down to the session. Since there are multiple instances of the same user control added dynamically, the controls are also named dynamically. How will I access the values in the drop downs and add...
  9. jino

    Navigation of web pages

    Hi There, I have a web application that has four pages Introduction, Page1, Page2 and Page3. I want the user to navigate these pages in that order only. I want to restrict the user from typing the URL for Page1, Page2 or Page3 and accessing it from there. They should be able to access Page2...
  10. jino

    Adding User Control Programmatically

    Hi , I am trying to add an user control to my aspx page programmatically. I need to add multiple instances of my user control , so I have to do it dynamically. While doing this I am getting an error that the buttons in my user control should be inside a <form> tag. If I add my buttons inside a...
  11. jino

    Events from User Controls

    Hi There, I have looked at various sites to solve my problem. The button click event of my user control does not fire. I have created a user control and dropped it into a web form. I have added the user control as a member variable to the parent control. It is the wiring of the events that I...
  12. jino

    C# to Vb.Net

    Hi there, I am trying to get the examples on the following page working: http://www.15seconds.com/issue/020319.htm if you guys have any suggestions, please let me know. I am trying to develop in Vb.Net. I will try the code suggested by BabyJeffy in the meantime. Thanks everyone. Jino
  13. jino

    C# to Vb.Net

    Hi there, I am trying out a few examples from net on using the user controls. The example that I have is in C#, but I am developing in VB.NET. Can someone help me interpret the following code into VB? <style> Body {MARGIN: 0px 0px 0px 0px;} .WebUserControl2 { BORDER: solid 1px...
  14. jino

    Session Time Out

    Hi there, The clients using this application might be entering sensitive data (personal and financial). They might leave the session open for the next user (this application is mostly for audiences using a public internet site like a library). So, I want to abandon the open session and present...
  15. jino

    ASP.NET application on the web

    Hi, I am developing a web application in ASP.NET. The web app will be part of an already existing website. So, I am building the webforms to the specifications of the current pages. The webpages may change and have an entirely new look and structure in the future. The underlying...
  16. jino

    Session Time Out

    Hi, I did try using the Server.Transfer method. Nothing happens. It stays in the same page as before. BTW, I am assuming the Server.Transfer or the Response.Redirect method is invoked from the Session_End method in Global.asax. Any other ideas? Thanks in advance. Jino
  17. jino

    Session Time Out

    Hi, I am testing the session time out for my application. I put a breakpoint in the Session_End method to find out if the timeout expires. It does expire after the specified time (set to 2 minutes in the Web.Config file), but I am not able to redirect the user to another page using...
  18. jino

    ASP.NET web Application

    Hi Again, Thanks for the links. But I dont have the Master Page options in my version of VS.NET. I guess I have to create user controls like header and footer to give my pages a consistent look. Jino
  19. jino

    ASP.NET web Application

    Hi, Thanks for the tip. I do understand the need for a master page. But I am not sure how to develop this. I have to use the HTML code from the existing pages and in the middle of the page, i need to display my webb forms. Can you refer me to any web tutorials where I can find such...
  20. jino

    ASP.NET web Application

    Hi There, I am developing a ASP.NET web application which will be part of a website which already exists. I have to create new pages that look similar to the existing pages and the central part of the page will have the web forms. Can anyone give me ideas and directions on how to get this...

Part and Inventory Search

Back
Top