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!

Search results for query: *

  • Users: kizmar2
  • Content: Threads
  • Order by date
  1. kizmar2

    DropDownLists & Scanners

    I have a problem that I'm stumped as to how to trouble shoot. I have a "scan.aspx" page with a dropdownlist that's populated at page load with a list of student ID's. The focus is also set to this object on page load. On selectedindexchange, I'm firing code that inserts a record into a history...
  2. kizmar2

    dataReader skips first record

    I'm having an issue with a data reader skipping the first returned record. I've double checked the SQL statment and I know it is actually skipping the first record. I noticed that if I remove the "If dataReader.Read Then..." statement from around my data bind, it works, but then I can't set the...
  3. kizmar2

    GridView

    Isn't there a way to do something like this: <asp:GridView ID="myGridView" DataSourceID="mySqlDataSource" runat="server" AutoGenerateColumns = "False" AllowPaging = "True" AllowSorting = "True" DataKeyNames = "au_id" CellPadding = "4" ForeColor = "#333333"...
  4. kizmar2

    .NET 2003 - .NET 2005 Conversion Issue

    I just converted a web app from .NET 2003 (ASP.NET / VB.NET) to .NET 2005. I'm noticing now that a couple events are firing twice now for no reason (they weren't doing this before I converted them). I have no clue why they're firing twice, there's no code that would call the sub again, but it...
  5. kizmar2

    The resource cannot be found.

    I've been working on this ASP.NET (2003) app for a couple weeks now, adding pages and such... today when I added a new web form and tried to view it using my IIS web service, it's giving me the following error: The resource cannot be found. Description: HTTP 404. The resource you are looking...
  6. kizmar2

    Searching for columns...

    I need to search multiple (over 200) tables for information. At the moment I'm having to search through the tables until I find a certain column name, then I search that column for certain values. Is there a way to shorten this process, or at least figure out which tables have this column? I...
  7. kizmar2

    OnSelectedIndexChange....

    .NET really makes me feel stupid. I'm trying to make a simple form with one dropdown box, populated but data from a SQL server database. The drop down is populating fine, but the OnSelectedIndexChanged event isn't working the way I would think it should. Here's my aspx.vb: <form...
  8. kizmar2

    .NET Reformatting HTML

    This is driving me INSANE!!! I can't get .NET 2003 to stop re-formatting my HTML when I either view it in design view or run the project. It keeps re-tabbing everything and there's no rhyme or reason to it. I've gone through all the options and don't see anything else to stop it from changing...
  9. kizmar2

    Javascript &amp; Embed/Object to play music

    I'm trying to write a very basic "jukebox" to use on my site. All I have is one dropdown list with a couple songs, and the play/pause/stop buttons next to it. I want a song to play once someone selects one, and the buttons to work when one is already selected. I keep getting "Error...
  10. kizmar2

    Getting values out of XML response

    I am sending a request to UPS, then getting a response back based on info sent. I'm new to XML and have no clue how to get just the values back out of the response from UPS. The following is an example of what UPS is sending back: <?xml version="1.0"?> <RatingServiceSelectionResponse>...
  11. kizmar2

    XML &amp; VBScript

    I'm trying to talk to UPS's XML Online Rate & Services Tool via an HTTP XML post, but having issues. Based on their documentation they want two requests sent in one XML document, but the DOM doesn't allow that... so I'm now sure what to do. Here's an example of what I wrote to test this...
  12. kizmar2

    PHP &amp; iFrames

    Is there a way with PHP to check that the current page is not in the parent frame, but in a specific window/frame? Basically if someone Googles a page that should be in an iframe, I want to pop them back into the parent page with that page loaded in to the iframe. I just need to be able to...
  13. kizmar2

    PHP Sessions

    Is there an easy way to count how many PHP sessions are open on a web page? I have a client that wants to see how many people are logged in to his site at any given point in time and would like to be able to do it without having to hit a database. KizMar ------------ http://www.maximizetech.com
  14. kizmar2

    FF vs. IE

    I have looked over this code several times now and cannot for the life of me figure out why Firefox is displaying it correctly (the way I want at least), and Internet Explorer does not. The row in the table that has the email list join (black box) is not showing in IE. I found that if I take...
  15. kizmar2

    Another CustomValidator Post...

    I see there are a ton of posts for custom validators, but my issue isn't resolved in any of them as far as I could tell... I'm trying to use a client side custom validator with Javascript as the validating language. What I'm seeing is my custom validations aren't firing correctly. If I click...
  16. kizmar2

    IE CSS & iFrame Bug?

    I have a page: http://www.maximizetech.com/index_demo.php The CSS class used in the body tag is: body.test { background-image: url(../images/branding.gif); background-attachment: fixed; background-position: bottom; background-repeat: no-repeat; } I don't understand why IE is duplicating...
  17. kizmar2

    Link calling VB function

    How do you code a <asp:hyperlink...> to call a .VB function? Maybe that's not the right thing to use to get what I need here ... I tried using a <asp:LinkButton...> instead, but that has to be wrapped in a <form> tag, and I already have a form on the parent page. I'm doing this on a .ASCX page...
  18. kizmar2

    Session State (Session.Abandon())

    Getting (another) error and not sure why or how to fix it: Error Exception Details: System.Web.HttpException: Session state is not available in this context. Line 38: Session.Abandon() PubClasses.vb Imports System.Web Imports System.Web.SessionState Imports System.Data.SqlClient...
  19. kizmar2

    Web Form Designer Generated Code

    I just coded an ASPX page with a simple form on it using CustomValidation objects and two ASP:TEXTBOX'es. I couldn't figure out why the .VB wasn't recognizing the form objects. I realized that they weren't being put in the Web Form Designer Generated Code automatically (i.e. - "Protected...
  20. kizmar2

    Global file & subs ...

    Shouldn't I be able to add a sub to the "Global.asax.vb" file and use it in a aspx.vb file? I don't have to inherit the global file in the aspx.vb file do I? KizMar ------------ http://www.kizmar.net

Part and Inventory Search

Back
Top