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() +...
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...
After some testing I have figured out that when I do a refresh it clears the previous value out. I just have to figure out how to do a refresh or clear out my cache everytime I click the back buttton.
Yeah I know that its just when you hit back it will erase it from the text until you hit another value then it will reappear. Ive been trying to get it so when you click back it will erase it from the the For Next Loop.
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...
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...
Okay I think I have it but I just want to make sure. So in my my Do While Not I need something like
<%
if NodeID Mod 2 Then %>
<dt class="cola">
<%Response.Write "<a href=""MOWebIndex2.asp?NodeID="&NodeID&""">"&NodeName&"</a>"
rsMOWebIndex.MoveNext
%>
</dt>
<%Loop%>
Sorry I just never...
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...
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...
Sorry I was out for a few days. These values that fill the listbox are from a query. It fills the listbox based on an ArtID. So when you go to edit an article and it available paths you should be able to delete the paths from the listbox and the database as you see fit. Hope that gives you...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.