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

    Qoutes in C#

    I have this anchor tag that gets a URL from the database. My web guys tell me when they look at the source it comes out like this: <a href="MDCLibrary2.aspx?NodeID=105"> My code is this: <a href=MDCLibrary2.aspx?NodeID=" + drw["ndeNodeID"].ToString()+ ">" + drw["ndeNodeName"].ToString() +...
  2. Figzus

    Passing Parameters

    So I have this page where I click on one topic and it loads the next page with all of the other topics available to the topic that was clicked on the previous page. I have my URL looking like this: http://mdcdev/ADU/MDCLibrary/MDCLibrary2.asp?Search=Fishing I want to keep that URL the same but...
  3. Figzus

    Automatic Refresh with FireFox

    I have an automatic refresh in my html using IE I was wandering if there was one for Mozilla FireFox?
  4. Figzus

    Breadcrumb

    Okay so I have this breadcrumb for VB Script. When the user hits back it will take them to the previous crumb id. What Im trying to do is when they hit that back button it takes out the last crumb/id out of it completely so when they go forward again to a different area the previous spot is no...
  5. Figzus

    HTTP_HOST and its meaning

    Okay I have this breadcrumb that was created in C#. I was wandering what the HTTP_HOST mean in the following code. // get the url root, like www.domain.com string strDomain=Page.Request.ServerVariables["HTTP_HOST"].ToString(); strDomain.Trim(); // Trim removes leading and trailing whitespace...
  6. Figzus

    Sorting Out Data with Columns

    I have this database that populates a webpage with available topics. Im trying to get it into two columns with the first one going into a column called cola and the second one going into a column called colb and the third back into the column cola and so forth. How do I get it so that every...
  7. Figzus

    Removing Items From A List Box and Database

    I have this listbox in my Access app that has a rowsourcetype property set to a Table/Query. In this listbox there are a list of different paths an article can belong to. I populate the list box with the following code on form load. It is pulling the strWhere which is an ArticleID set from the...
  8. Figzus

    Removing data from a list box

    How do you delete data that is in a listbox populated from a database? The once you delete it from the database how do you remove it from the listbox itself? Thanks
  9. Figzus

    Using If Statement and A Post

    Im having trouble with this If statement I just cant seem to figure out how to get it going. If I use the submit button to submit a value from a drop down list on my home page I need it to see that on my next page Im submitting a value from the drop down list and do what I need it to do...
  10. Figzus

    Phone Number Format Issue

    Okay this probably seems like a really dumb question but I have no idea how to do it. How do you take a phone number like this 0123456789 and break it down into 3 differnt text boxes? I have a huge text box that it populates when the page loads Im just wandering how do I break it down into 3...
  11. Figzus

    Populating Combo Boxes From A Database

    I figured out how to populate text boxes from a datbase but how do I populate a combo box from the database for a single value? Like the division that the record belongs to? Thanks
  12. Figzus

    Using a search on click

    Im working this online cell phone application where you can search using two options Cell Phone or Last Name. I have the SQL and options code correct, but Im having trouble with the on click event and populating the results in table. Im just not sure how when you click on the Find button how to...
  13. Figzus

    Repopulating Navigation Bar

    Okay so Ive been working on this app that when you click on a node name it repopulates the page with all the articles underneath it and it holds the node id. What Im trying to do is when you click on the Node Name it populates a side bar with that node also. So basically what Im trying to do is...
  14. Figzus

    Getting A URL From The Database

    In a write response how would you anchor the name you pulled from the database from a URL stored in the databse. I need that Name I pulled from the database to have the link from URL so when someone clicks on it it goes to that URL thats stored in the database. Thanks
  15. Figzus

    Using a on click to get another value

    Okay here is what Im trying to do with this code. Im trying to take this value <%Response.Write (rsMOWebIndex("NodeName"))%> and when you click on the NodeName it will show all of the article names thats associated with it in the database. If anyone can help me that would be great. Thanks
  16. Figzus

    Sending Values To Different Forms

    I know this is probably the easiest question there is but how do you send the value of a textbox in one form to another text box in another form. Thanks for helping.
  17. Figzus

    Refreshing a combobox

    I'm needing help with refreshing a combobox after text has been stored to the table. A simple button would work. Thanks
  18. Figzus

    Attaching A File

    Does anyone know how to attach a file to a record? I need it because I have to store the file in access. Thanks
  19. Figzus

    creating a path in a text box

    I am trying to create a path in text box that gets its information from a combo box. What this path needs to look like is something like this: Information/Information/Information It just needs to continually build on that path everytime the user hits the button. Can anyone help me??Thanks

Part and Inventory Search

Back
Top