Search results for query: *

  1. E

    Problem with wrapping text in Firefox

    I'm designing a page for our site and I want to use mainly <div> tags and having the text flow around it and am trying other stuff out with CSS and styles. I'm not done but I have it where it displays exactly how I want it in IE7, but for some reason the text does not wrap in Firefox. I'm sure...
  2. E

    help using Javascript DOM to make link change in different frame

    awesome, thanks that does help! I figured I just wasn't referencing the right thing. Since it's a frame I had to go a little further and add the parent to the start. What you posted didn't work at first but I just changed the element to parent.frames[1].document.getElementById('myAnchor') to...
  3. E

    help using Javascript DOM to make link change in different frame

    I usually don't like frames but I have to use it for some reason in this assignment I'm doing. I am trying to change a link on another frame (main.html) by a user clicking a button on another frame (header.html). I'm using DOM Javascript to do it, and I think I have how it should go except...
  4. E

    problem with input from textbox

    Alright sweet, that's actually what I did so I figured I had it right. I just put it in a different spot which may be why it didn't work quite as I expected. The only thing I had to adjust was adding an Else statement to clear the Error textbox since even when someone inserts a correct...
  5. E

    problem with input from textbox

    Yes it did, thanks! haha yeah I just tested it out and it works great. I don't know why I didn't see that before, but I was doing was having two statements to do it instead of one. I wasn't thinking about just having the ToUpper and Trim methods together, but once I did that it worked great...
  6. E

    problem with input from textbox

    argh nevermind...I realized I just had to put the ToUpper method with the statement I already have. strNevisID = txtCustNum.Text.ToUpper.trim I think that's what I gotta do, but I was trying to do it as two statements. Figured it was something simple I was overlooking. Thanks for the help...
  7. E

    problem with input from textbox

    Alright sounds good, whatever can help solve this =) I just didn't wanna post too much code that may be unnecessary. Here is the code for the GetBillingAddress method within the MyAccountDB in the database. '******************************************************* ' The...
  8. E

    problem with input from textbox

    Hey thanks! finally someone who is willing to help haha. Yeah I was figuring that, it was just showing the text but not affecting the value. I guess the reason I was trying it that way is because I did the Upper method first in VB but got no results. Would I need to combine both or just use...
  9. E

    problem with input from textbox

    I need some help...I have a page that allows a customer to type in a customer number and Purchase Order number, and I have it set to Autopostback for the CustNum so that when a customer types their 6 digit Customer Number in, it will pull up their billing information on that page and then they...
  10. E

    Using rollover effects with CSS in ASP.net 2.0

    Hey, wow I actually got something figured out haha...ignore my first post I guess, since I found something that worked What I ended up doing what putting the <span> tag outside and then the <asp:hyperlink...> inside it, so it's working. Here's what I have for it, and then I just have two...
  11. E

    Using rollover effects with CSS in ASP.net 2.0

    Hey all, well I got that menu working but now I need to fix the header. Basically, I want to do rollover effects for a button, but it has to be with a server control. I got it working just like I want it to with <a> tags and such, and then using CSS...but I need to make it work with ASP.net...
  12. E

    Help with adding links to Menu in ASP 2.0

    Hey, I may have something but it's not working 100% correctly. Instead of using the Javascript and stuff, I added something to the CSS and it seems to be close to working. I put in a display: block; line in the menuselected property and right now it let's me do what I want for some, but the...
  13. E

    Help with adding links to Menu in ASP 2.0

    Would it have to do with it being in ASP 2.0? The website I'm using is running with that so maybe the Javascript is working differently with it somehow. I'm not sure. But yeah I put that Javascript in and it did not work as expected. Not sure why it wouldn' tsince you said it worked for you...
  14. E

    Help with adding links to Menu in ASP 2.0

    Thanks for the help. It didn't seem to work though. It still has the menu where you cannot click in the bar, but now it just has the subcategories appear in a wider bar but with the same effect so it just made it worse. Not sure why it won't work right. I've had several suggestions and tried...
  15. E

    Help with adding links to Menu in ASP 2.0

    Also, here's the code for the Menu part in the Master Page...maybe this will help. I guess it is something in this code that needs to be fixed for the menu to allow a link for the whole bar and not just the words. Figured this would help so I posted it. I'll check through to see what it is all...
  16. E

    Help with adding links to Menu in ASP 2.0

    Hey, well I got the header to look great and work like I wanted (I ended up using CSS and it all works fine so I'm glad that's done haha). I actually have the menu looking pretty much like I want it but am just having one small problem I need some guidance on. I used and XML file and CSS to...
  17. E

    Need help with ASP 2.0 menu for website

    Here's the code just in case someone needs to see how I did it and maybe test it out...I tried it but it didn't appear right. I don't like posting a lot of code and this is about 160 lines but it should help you see how I designed it, and everything seems to be fine but the menu. I greatly...
  18. E

    Need help with ASP 2.0 menu for website

    Hey, I'm having this simple but annoying problem with a menu I've designed in Web Developer in ASP.net. Well it works fine but I'm trying to convert over to ASP 2.0 and when I have it in design it appears how I want it to, but when it goes online the text is different. I want it to have a...
  19. E

    Help with designing header for site in ASP and VB

    Awesome! Thanks a lot. Yeah just changing that one width thing to auto helped it. It's not bunching it up but it stayed the same. I just need to update the image a bit since it looks like that circle thing is off haha, but that's no big deal. Yeah I was doing it all in WYSIWYG mode, which is...
  20. E

    Help with designing header for site in ASP and VB

    Hey, I am trying to design a header for our web site...and I'm having a little trouble. I basically have it looking how I want to, but for some reason it doesn't want to display right. I mean that in the program I'm using (Visual Web Developer) the design looks good, but when I switch to code...
Back
Top