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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MONFU

  1. MONFU

    Drop-Down List

    I managed to solve it:- DropDownList1.Items.Insert(0, "Please Choose") Thanks for your help
  2. MONFU

    Drop-Down List

    Hello Checkai, I am using Access as my database Johann
  3. MONFU

    Drop-Down List

    Dear All, I am new to ASP.NET and I am just experimenting a bit with the drop-down list. I have the following <asp:DropDownList CssClass="news_paragraph" DataSource="<%# dsCourses.DefaultView %>" DataTextField="courseTit" DataValueField="courseTit" ID="coursesList"...
  4. MONFU

    search function

    hmmmm very interesting. Well the tables I am allowing the user to seach in are basically 9 tables. but I did not understand the code perfectly
  5. MONFU

    search function

    Dear All I am trying to do a search function for an entire site based on an Access Database. I have already created a search functionality from particular tables, like for example from the FAQ table:- if category = "FAQ" then sqlSearch="SELECT * from FAQ " sqlSearch = sqlSearch & " WHERE...
  6. MONFU

    Object reference not set to an instance of an object

    OK I found the error, I forgo to declare it in the HTML Thanks
  7. MONFU

    Object reference not set to an instance of an object

    Dear all I am totally new to ASP.NET and I am trying to follow some examples from a book I have bought. However i have encountered the following error:- Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. Source Error: Line 56...
  8. MONFU

    Give full permission rights to the ASPNET user

    Hello Dazzled, I right clicked however i could not see any Permissions tab or option
  9. MONFU

    Give full permission rights to the ASPNET user

    Dear All, I am new to ASP.NET and I am trying to install a component in VS.NET. I am following some instructions on how to do it, however I encountered the following line:- Give full permission rights to the ASPNET user How do you do that? Thanks for your help and time
  10. MONFU

    Request.ServerVariables(&quot;HTTP_REFERER&quot;)

    First I am getting the page variable then I am redirecting to another asp which inserts the click in the table:- ie first page = Request.ServerVariables(&quot;HTTP_REFERER&quot;) and inserting into the banners table with the banner id and page Then I redirect to another asp if the user clicks...
  11. MONFU

    Request.ServerVariables(&quot;HTTP_REFERER&quot;)

    Dear All, I am trying to write a small banner system and I am trying to get the page from where the banner is displayed. I have tried this piece of code:- page = Request.ServerVariables(&quot;HTTP_REFERER&quot;) however with IE6, it does not work and gives me a blank variable. Is there a...
  12. MONFU

    sql to retreive date

    Dear all, I am trying to retreive data from an Access table, depending on the dates chosen by the user. I have 2 list boxes, NewsMonth and NewsYear, and the results are numbers, for example for NewsMonth, June is 6 and for the year it is 2003. Then I am trying to create the sql to retrieve...
  13. MONFU

    javascript menu

    I tried to do a tutorial on how to make a Javascript menu, however nothing is appearing on the screen. Can anyone help me please and tell me what is wrong? Here is the code:- <style> .menu a{ color: white; font: 10pt Verdana,sans-serif; } .menu a:hover{ color...
  14. MONFU

    calling a Sub Procedure

    Hi All, I am trying to do a sub procedure to update the table, so that I can use it in many instances without replicating the code. However I have never used Sub Procedures before and so I am not very familiar with them. Here is my code, which is not working. Can anybody help me out...
  15. MONFU

    Submit button

    Hi parasandalone, I did what you told me to do, but the problem now is that if I leave the name field empty for example, since the checksubmit() function returns false, the page displays the error message, ie &quot;Please enter your name&quot; and when I click ok, it only displays false on the...

Part and Inventory Search

Back
Top