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 SkipVought 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. larryman

    Secure pages and Web Site Administration Tool

    You might want to use a single database instead of two, depending on the solution or the strategy you have adopted. I'm not aware of any nightmare this might cause but can give 100% guarantee. I have used this method in the past and it worked perfectly for me. You might want to explore jm's...
  2. larryman

    Secure pages and Web Site Administration Tool

    ASP.NET 2.0 Web Site Administration Tool is very easy to use and saves time. Watching this video might be helpful http://www.asp.net/learn/videos/video-45.aspx Oysterbar ride to success. Keep Riding
  3. larryman

    Request.Form on MasterPage Content Page

    ca8msm, Thanks for pointing that out to me. I found the solution at http://msdn.microsoft.com/msdnmag/issues/03/05/CuttingEdge/default.aspx Oysterbar ride to success. Keep Riding
  4. larryman

    Request.Form on MasterPage Content Page

    Thanks jbenson001. I figured this out. Oysterbar ride to success. Keep Riding
  5. larryman

    ScrollableControl.SetDisplayRectLocation

    Hi All, I will appreciate any help on how to programatically handle scrollbar. I have a UserControl that give focus to a DataGridView but automatically scroll down to show the control. I want this scrollbar to move to the top of the page so that users can view the top of the page. I researched...
  6. larryman

    Request.Form on MasterPage Content Page

    I am stuck with Content page as the Request.Form on the page keeps returning null. I can't use form tag in the content page as the tag is already in the Master page. I have tried all work around seems to be out of luck. I have tried using the FindControl but not really sure I'm doing the right...
  7. larryman

    Sending multiple emails with asp and cdonts question????

    Hi, I'm sure there is a way to do what you requested. Can u post your script. This will enable us to see exactly what you are doing and what you are getting right/wrong. The formats you mentioned above is not really clear to me. Is it the body format of the mail? I know this could be set to 0...
  8. larryman

    IF statement inside loop

    Many thanks Tarwn and DreXor, i got this fixed by this code, <% @Language="VBScript"%> <% Option Explicit 'declare all local variables dim dcnDB, strSQL, rsData, i, Kount 'As ADO.Connection dim arrSomething, strNTUser, DataValue, Formvalue 'Create the Connection Object Set dcnDB =...
  9. larryman

    IF statement inside loop

    Hi guys, I have an IF statement that is not executing properly inside a FOR Next loop. This if statement executes once and doesn't execute again even when the conditions are satisfied. Below is the code <% @Language="VBScript"%> <% Option Explicit 'declare all local variables dim dcnDB...
  10. larryman

    Javascript menu with Frames

    Hi All, Please i want to implement a site on MSCMS Server. The site requires a dynamic menu with frames. What i want is similar to what is obtainable on www.total.com. Please if anybody knows a software that can write this for me i wouldn't mind going in that direction. I need to deliver the...
  11. larryman

    Update Error

    Thanks Man, I observed some changes in the Response.Write strSQL, and it's this UPDATE Airbooking SET Head_Approve = 'Approved', Head_Approval_Date = '9/18/03'WHERE ID IN (510, 511) Microsoft JET Database Engine error '80040e10' No value given for one or more required parameters...
  12. larryman

    Update Error

    Hi, Please what's wrong with this Update statement strSQL = &quot;UPDATE Airbooking SET Head_Approve = 'Approved', Head_Approval_Date = ' # Date() # '&quot; & _ &quot;WHERE ID IN (&quot; & strDeleteList & &quot;)&quot; dcnDB.Execute(strSQL) Keep getting this error Microsoft JET Database...
  13. larryman

    ASP and Outlook

    Check www.cdolive.com whether this will help you Oysterbar ride to success. Keep Riding
  14. larryman

    Blank Messages with Mailing List

    Veep,cglinn I'm writing to the cookies because this pages refreshes itself so after the first time, the request.Form(element) goes away and it becomes blank. but if i request from the cookie, i could always get the info after the refresh. Thanks Oysterbar ride to success. Keep Riding
  15. larryman

    Blank Messages with Mailing List

    Hi, Could anybody help fathom what's wrong with this code, it's causing headache for me. It has been sending mails for almost one year to a mailing list of around 5,000. To my amazement the mails sent today contains no body as in the mails are blank. PLeaseeeeeeeeeee what could be the problem...
  16. larryman

    SQL Error

    Adroit, Thanks, it's working with the space recommended. vbkris, Thanks too. Larryman Oysterbar ride to success. Keep Riding
  17. larryman

    SQL Error

    Please, Can anyone help figure out the source of error in the SQL statement below. I keep getting this error. Microsoft JET Database Engine error '80040e14' Syntax error in FROM clause. strSQL = &quot;SELECT AirOrder.Passenger_No,&quot; _ & &quot;AirOrder.Date, AirOrder.Department...
  18. larryman

    Hidding form's element

    Hello, Please i need help on how to hide form's element and to make it appear in response to user event. Oysterbar ride to success. Keep Riding
  19. larryman

    CDONTS Body Problem:converts ' to ’

    CDONTS converts ' to ’ in the body of my mail. I don't know what to change this to using the replace statement or is there any escape character that can do this for me. Also it abruptly stops when it encounters &quot;. Please i need help on what i can change this to. Will this help out...
  20. larryman

    Form link not working, basic question

    Could you remove &quot;/&quot; from your form action. As in replace <form action=&quot;/aspmailtest.asp&quot; method=&quot;post&quot;> with <form action=&quot;aspmailtest.asp&quot; method=&quot;post&quot;> I got that from the source of the html page Cheers Oysterbar ride to success. Keep Riding

Part and Inventory Search

Back
Top