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

    Invoking button click event from server side

    I am trying to programmatically invoke button click event. I used RaisePostBackEvent() and it does execute the OnButtonClick function for that button. I am associating a javascript Attribute to that button, and this attribute is not getting executed when I call invoke button click using...
  2. alphajava

    SmartNavigation and DropDownList

    Summary of the problem: If I set page directive to SmartNavigation="true" and try to close web form while focus is set on the dropdownlist I get memory crash. Anyone knows why or how to fix it? Thanks.
  3. alphajava

    Wizard page-scrolling

    Hi: My web application is in the form of wizard. So, I made some 3 panels, and inside each I put the controls for that page. I then set the current panel property to visible, while all others to non-visible. This works, but since these panels are stacked vertically, if I make the 3rd one...
  4. alphajava

    ListBoxes within a ListBox

    Hi: I got request to have some 15 listboxes inside one list box which can be scrolled horizontally (because 15 listboxes aligned horizontally won't fit one screen). I am using ASP.NET with c#. I do not know where to start. I'll appreciate any hints. Thank You all.
  5. alphajava

    Trying to store-read variable between post backs

    I am trying to store an integer variable and make it persist in between post backs as follows: private int imad; // Inside Page_Load() I have this: // Read val if(this.ViewState["val"] == null) { val= 10; } else { val= (int)this.ViewState["val"] + 1; } // Store val this.ViewState["val"] =...
  6. alphajava

    Where do we put our files in Tomcat?

    I installed Tomcat in C:\jakarta-tomcat-5.5.9. It also installed itself in C:\Program Files\Apache Software Foundation\Tomcat 5.5 Now, if I start Tomcat and type in the browser: http://localhost:8080/ I get that famous Apache Jakarta Project page. Then I put this file Hello.html in...
  7. alphajava

    TomCat and j2ee

    I installed latest version of j2ee (file:j2eesdk-1_4_01_2005Q1-windows.exe), and then Tomcat 5.5.7. When I run startup.bat in Tomcat I get this error: "This release of Apache Tomcat was packaged to run on J2SE 5.0 or later. It can be run on earlier JVMs by downloading and installing a...

Part and Inventory Search

Back
Top