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 Mike Lewis 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: *

  1. brimike

    display DIV tags referenced in multiple arrays.

    Can anyone take a stab at this?
  2. brimike

    display DIV tags referenced in multiple arrays.

    Hi, having issues regarding trying to display text in DIV tags referenced from multiple arrays. THANKS IN ADVANCE here is the code. I am thinking I need to create a function to swap the the DIV but I can't seem to figure out a way to do this. Basically I need to display an image and text from...
  3. brimike

    Passing Variables back and forth for error checking

    Hello, I am having a problem passing avriables that are already in the form to the handler. Once I submit I lose the entire query string and the fields that were populated with user input are also lost. I was able to pass data to the form however when you submit the form leaving a field empty...
  4. brimike

    How to move a dynamic link on a page

    Hi Sheco, I tried everything including adding another link on a layer. I don't care if I have to dulpicate the link as long as I can just bring it up higher on the page. I believe I have found a bug in ASP. Asp by default is a compiled language. Why is the link not being compliled as It should...
  5. brimike

    How to move a dynamic link on a page

    How do I create the link after the connection to the db populates the variables? Thanks
  6. brimike

    How to move a dynamic link on a page

    Hello All, I am trying to move a dynamic link on a page. The section connects to a db accesses an email variable and will be used to process a form, however I can't seem to get the link placemnt where it needs to be on the page. --I Need this link to display at the top of the page----...
  7. brimike

    Cannot send a variable to the next page????

    You did it. Thanks. I really appreciate it.
  8. brimike

    Cannot send a variable to the next page????

    How do I fix it. I moved the link below the call to the db as well as the Dim and still the link is empty. Any ideas.
  9. brimike

    Cannot send a variable to the next page????

    1.)<a href="contactustest1.asp?mls=<%=varMLS%>&LID=<%=varLID%>&Associate=<%=varAssociate%>&AgentEmail=<%=AgentEmail%>"><span class="style10">Request Additional Information</span></a> 2.)IF Trim(lcase(rsAgent("Title"))) = "realtor" THEN response.write "Sales Associate/REALTOR<sup><font...
  10. brimike

    Cannot send a variable to the next page????

    Hello All, This is an ongoing issue. At this time I am about ready to throw in the towel. I am trying to send a variable, a simple email address through a query string. I have tried everything in the book. The string always comes out empty. Here we go for the last time. This is the sending...
  11. brimike

    Variable is empty in URL link

    Will do. The code is not mine, I am just trying to add some features, I will say it is a mess. Thanks
  12. brimike

    Variable is empty in URL link

    I was thinking that but since the page is compiled I didn't think it mattered. I will move the entire section higher in the page and give it a try. Thanks.
  13. brimike

    Variable is empty in URL link

    I believe so, when I I print to screen it works in the sending page EG; and I get the value fine. But when I try to pull the value and add it to a string it dies. Dim AgentEmail AgentEmail = CStr(rsAgent("email")) 'Response.Write(AgentEmail) As far as rsAgent the table is pulling like so. If...
  14. brimike

    Variable is empty in URL link

    Yes. I see it is empty. The email address should be there but it is not showing. I declared the variable. I associated the AgentEmail in the code with the email tag which is Dim AgentEmail AgentEmail = CStr(rsAgent("email")) And in the URL path I am using >&AgentEmail=<%=AgentEmail%>...
  15. brimike

    Variable is empty in URL link

    Yes. Here is the link source . http://premier-properties.com/contactustest1.asp?mls=205094186&LID=23879&Associate=Thomas L. Campbell, Jr. 434-2424.&AgentEmail= Here is the call for the variable on the recieving .asp page empty. <tr class="devTXT"> <td>&nbsp;</td>...
  16. brimike

    Variable is empty in URL link

    The Link____ <a href="contactustest1.asp?mls=<%=varMLS%>&LID=<%=varLID%>&Associate=<%=varAssociate%>&AgentEmail=<%=AgentEmail%>"><span class="style5">Request Additional Information</span></a> I am trying to pass <%=AgentEmail%>
  17. brimike

    Variable is empty in URL link

    Hello, I am trying to pass a variable in a link. When you roll over link the variable is empty. And the query string request on the recieving page is empty as well. Here is the code. Any help would be greatly appreciated. Sending page ========================================= <link...
  18. brimike

    Cannot pass variable in link?

    Hello Sheco, I placed all code and in the string I still see the variable empty. Here's the code: Sending Page ============================================== <link href="globaldynamic.css" type="text/css"> <% varMLS = Trim(Request("mls")) IF TRIM(varMLS) = "" THEN varMLS =...

Part and Inventory Search

Back
Top