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 Wanet Telecoms Ltd 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. ola123

    capture the value from a text box in a formview

    Guys thanks a million it worked. RiverGuy - thanks i'll do that
  2. ola123

    capture the value from a text box in a formview

    Morning guys, I have a formview and i would like to capture content of a textbox within the formview and display its content in another textbox or label whenever a button is pressed. i have tried the following: Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)...
  3. ola123

    how pass values from a Formview to a detailview on another page

    hey guys, I created a application form that inserts each record into a sql database. The form insert records like application#, fname, lname, DOB etc. I have a payment button that when selected directs you to a payments page, what I want is that when this button is selected it would take some...
  4. ola123

    getting databse oriented program to work outside of MS Web Developer

    I wrote my program in Web developer 2008 and connected to a database [Ms SQL 2008 server]. the program works fine inside Web developer, but how do i get it to work when web developer isn't open. My real problem is connecting to the database when web developer is not open, i get this error msg...
  5. ola123

    Problem inserting into a databse

    Thanks jmeckley for the link, but here's the thing all that code is too much for me to understand much less to implement, regarding my code above i was going through a tutorial i dug up and i cant seem to find what the error is relating to, it might be elementary for you guys, but could you or...
  6. ola123

    Problem inserting into a databse

    thanks for the input guys, I'm kinda new to this, so i'm not quite clear on how to use less markups. I have written this code before & it's almost identical (wrote like 2yrs now) & it runs fine. Whats could what the problem with the above the permissions that BMurtagh are fine.
  7. ola123

    Problem inserting into a databse

    ...</head> <body > <form runat="server"> <asp:AccessDataSource runat="server" ID="ADS" DataFile="ModDB.mdb" Selectcommand="SELECT * FROM Record" InsertCommand="INSERT INTO Record (Fname, Lname, Module, Age, Sex) VALUES (@Fname, @Lname, @Module, @Age...
  8. ola123

    ASP.net and MSQL

    thanks man I probably need to go do some thorough research on asp.net and ADO thanks though
  9. ola123

    ASP.net and MSQL

    Hey, I was wondering if MSQL could be the database used with asp.net instead of access (that what i was taught to use). and if so what would be the better on to use. Thanks in advance for you input.
  10. ola123

    Problem inserting a record into table

    Hi guys, I here teaching my self some asp using w3schools.com. I typed all the code on the page (http://www.w3schools.com/ado/ado_add.asp) that should allow me to enter a record into a table, but for the love of me the thing not working. if it's possible could someone tell me where i went...
  11. ola123

    Dropdownlist not declared in script when DDL is in DetailsView

    ...<form id="form1" runat="server"> <asp:AccessDataSource ID="ADS" runat="server" DataFile="registry.mdb" SelectCommand="SELECT * FROM CSDept "> </asp:AccessDataSource> <asp:Detailsview runat="server" id="DV" DataSourceID="ADS"...
  12. ola123

    Can &lt;asp:accessdatasource&gt; have a variable?

    ...possible to replace that with a variable <asp:AccessDataSource runat="server" id="booksource" datafile="project.mdb" SelectCommand="SELECT * FROM [bmis4] WHERE ID='500'"> </asp:AccessDataSource> Im sorry but for some reason i feel like im asking a stupid question...
  13. ola123

    save a record in a variable, then display record later

    thanks for the advice jbenson001, it seems u understand what i am trying to say, but the thing is i dont really understand everything you are saying. So do you have any links or tutorials i could use for reference thanks again, Cool Nuh Man
  14. ola123

    save a record in a variable, then display record later

    ...& _ "Data Source=" & Server.MapPath("PCC.mdb")) DBConnection.Open() record = "SELECT * FROM Accounts " & "WHERE id = '" & value & "'" DBCommand = New OleDbCommand(record, DBConnection) value = DBCommand.ExecuteScalar...
  15. ola123

    Display one particular record

    I do humbly apologise for that resopnse, its just sometime when you in a hurry to get something done its frustrating when you dont get the answers you deisre. I do appreciate jmeckely response and i accept the fact that i may have structured my question incorrect so let me try that again...
  16. ola123

    Display one particular record

    jmeckley if i was getting that results that i needed from a google search i wouldn't be asking help from the forum. u think
  17. ola123

    Display one particular record

    hello there, here is the problem. I have created some asp pages and linked it to a database. but what i want to know how to do is display ONE record. Say for example i type the id of a record and click find, it should locate and display only that particular record. if there is someone who...
  18. ola123

    display a particular record

    hello there, here is the problem. I have created some asp pages and linked it to a database. I know how to display the records using gridview, but what i want to know how to do is display ONE record. Say for example i type the id of a record and click find, it should locate and display only...
  19. ola123

    dropdownlist generates content of another dropdownlist

    yup i suck, could someone create a working example of link me to a working example of the following. i'm looking for [code/script] that when you select an option from a dropdown list it generates the content of another dropdownlist. So if i click on computer dept. as an option in the first...

Part and Inventory Search

Back
Top