Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

jamesbronw

@jamesbronw
About
Posts
44
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reader not opening a second time
    J jamesbronw

    Ok so i have gone through in debug mode and so forth and when it gets to my subprocedure thats calls info from the database it gets to the point of myconn.open then errors out. Is there a way i can force it to open the reader no matter what b/c i cant find a single spot where it would be closed. Or what could cause the reader to not open?

    ASP.NET help database tutorial question

  • Reader not opening a second time
    J jamesbronw

    Yes. all of that is located in subprocedures inside of a module i have

    ASP.NET help database tutorial question

  • Reader not opening a second time
    J jamesbronw

    Hi, I have a wep page that reads from a database in order to get background colors for certain buttons on the page. It works fine when you go to the page and when there is a postback event. When i navigate away from the page and try to go back to it i get an error message that says "Invalid attempt to read when reader is closed" Does anyone have any suggestions on how to fix this? Thanks, Tommy

    ASP.NET help database tutorial question

  • Post Back events
    J jamesbronw

    Hey people, I have a page that has 3 calendars across the bottom of it that are dynamically drawn from data from a database. I also have A picture gallery set up above the calendars. Now when I click on a new picture in order to make it bigger, the page does a postback. At this point i get errors w/ my dynamically drawn labels and such. Sometimes it say invailid attempt to read when reader is closed. Is there a way i can tell the page that on a post back dont reload the calendar information and still have it show up on the bottom of the page? Thanks Tommy

    ASP.NET database question

  • Centering text in a lable or button
    J jamesbronw

    Thanks, I'll give that a shot Tommy

    ASP.NET

  • Centering text in a lable or button
    J jamesbronw

    Is there a way to center text with a label or button b/c i cant seem to find out how. Thanks Tommy

    ASP.NET

  • Pass double quote from VB to HTML
    J jamesbronw

    Thanks to both of you. I am now able to atleast get the labels on the page! haha. Now i just need to figure out how to get them in the rows and columns needed. lol. Again, thanks for all your time and help Tommy

    ASP.NET html sysadmin help

  • Pass double quote from VB to HTML
    J jamesbronw

    Ok if i put it straight into my VB form code it renders it. If i put it into a sub procedure and call it from the HTML using the <% %> it doesnt create my new objects. This is all so new to me. Do you know why it would do this?

    ASP.NET html sysadmin help

  • Pass double quote from VB to HTML
    J jamesbronw

    Thanks for all your help. It is greatly appriciated. I have looked at the source code and there is nothing there that should be. I have no idea whats going on with this haha. I suppose i'll have to find another way to do what i need done. Again thanks Tommy

    ASP.NET html sysadmin help

  • Pass double quote from VB to HTML
    J jamesbronw

    well that code i posted doesnt work. Nothing shows up on the screen

    ASP.NET html sysadmin help

  • Pass double quote from VB to HTML
    J jamesbronw

    can i do that inside a do while loop like this... Do While lbl <= 7 Dim newlbl As New Label newlbl.ID = "newlbl" & lnum newlbl.Text = lnum newlbl.BackColor = System.Drawing.Color.Blue newlbl.BorderStyle = BorderStyle.Inset newlbl.BorderColor = System.Drawing.Color.Black newlbl.BorderWidth.Pixel(1) Page.Controls.Add(newlbl)

    ASP.NET html sysadmin help

  • Pass double quote from VB to HTML
    J jamesbronw

    Thank you

    ASP.NET html sysadmin help

  • Pass double quote from VB to HTML
    J jamesbronw

    Hi i am trying to do a response.write from my vb code. I need this to create a new asp:imagebutton. This is the code i have Response.Write("    ") now when i pass it into the html i need do have double quotes around the id, server, width, height, and backcolor. The only reason i think this is because the controls are not showing up on my page. If anyone can help I would much appreciate it. Thanks Tommy

    ASP.NET html sysadmin help

  • substrings...
    J jamesbronw

    you should have double quotes not single string text = "Hi how are you";string lastWord = text.Substring(text.LastIndexOf(" ") + 1);

    ASP.NET question help

  • Finding the Day of the Week a date starts on
    J jamesbronw

    Hey, I need to find out what day of the week the first day of each month starts on. Is there a way to do this? Or does anyone have any ideas of how i could write a function in order to find this out? Thanks in advanced Tommy

    ASP.NET question

  • &quot;Live Text&quot; as it were
    J jamesbronw

    make it a link to another asp.net page that holds the code for what you want the text to do. Thats what i had to do in order to do binarywrite. I had a picture, and the pictures url was to another asp.net page that held the code for what i wanted to show up in the picture box.

    ASP.NET

  • Calendar Month
    J jamesbronw

    Ok i got it working. Just one more question. Can you have more than 1 selected range on the calender?

    ASP.NET question

  • Calendar Month
    J jamesbronw

    I took a look at that but it makes no sense to me at all. I'm really new to the programming environment. Would you or anyone be able to give me an example of how to add just 1 month past the current month on the calendar? I'm trying to do this in the page_load of the webform. Thanks Tommy

    ASP.NET question

  • Calendar Month
    J jamesbronw

    Is there a way that i can have the calendar show a different month? I need it to show dates for March not Feburary. Thanks in advanced Tommy

    ASP.NET question

  • Image Button not responding
    J jamesbronw

    Hey people, I have this really strange error. On my home page wich is called index.aspx i have a list of image buttons on the side. Each image button takes you to a new web page. The code for these buttons goes like this style = 0 ibavail.Page.Response.Redirect("cabins.aspx") now i have the same setup on all my pages. but this is the only page that when i click the button the page changes but it stays as index.html only pure white. I have set other pages as the start page and they still work like they are suppose to. Any ideas or solutions would help so much. Thanks Tommy

    ASP.NET help html database workspace
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups