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!

Search results for query: *

  • Users: beaniebear
  • Content: Threads
  • Order by date
  1. beaniebear

    Deleting rows from a gridview

    I'm adding and deleting rows from a gridview in an update panel. It all works fine unless I delete all the rows from the gridview and then when I try and add another by clicking the add button the code is not executed? Any advice greatly appreciated.
  2. beaniebear

    AJAX and required field validators

    Hi, I have an update panel with a text box and a button. I have put a required field validator on the text box. When the button is clicked it is not doing the validation and posting the form even when there is nothing in the text box. Any help would be much appreciated, thanks.
  3. beaniebear

    Could not load file or assembly

    Could not load file or assembly 'System.Data.Services.Client, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified. Can anyone tell me why I get this error in my live environment and not in development? The...
  4. beaniebear

    getElementById problem

    <asp:DropDownList ID="ddlName runat="server" > <asp:Button ID="btnConfirm" runat="server" Text="Go" onclientclick="ChangePage()"/> I have a ddl and a button on a page. When the user clicks the button the javascript needs to check what has been selected in the ddl and redirect to the...
  5. beaniebear

    Use same code for multiple drop dpwn lists

    I'm sorry this is probably a very simple question. I haev four drop dpwn lists called ddl1, ddl2, ddl3 and ddl4. On page submit I want to run the same code on each ddl and wanted to do a for loop and dynamically put in the name of the ddl I want to reference. Any help much appreciated, thanks.
  6. beaniebear

    Everything coming up not decalred/not defined

    Something seems to have happened to my asp.net project. There are loads of errors which weren't there before saying control types are not defined etc. Also error like ispostback not declared, response not declared etc. What have I done? The project compiles and runs ok?
  7. beaniebear

    Publishing compiled site

    I have a site that I need to make a change to. The code behind is not deployed to the live site. I have published the development website (using vs2005) and copied the .dll's to the live site. But the changes that I have made on the development site are not on the live site. Can anyone...
  8. beaniebear

    Change name of logfiel folder

    The log file folder names had been incrementing by one but the last couple of sites the folder names are completelely random and very long. Can I change the name of the folders somehow so it is in line with the others, and also how do I control the names of logfile folders of future websites...
  9. beaniebear

    ddl question - limit number of elements shown

    Is there a way to limit the number of elements that you see at a time in a drop down list? Thanks.
  10. beaniebear

    stored procedure concatenation problem

    When I add a new member of staff to a table I require a reference to be added to the reference field which is year/nextrefence ie 2009/0001. Only the year is being displayed. Could you please let me know where I am going wrong? Or if there is a better way to do what I' trying to do? Insert...
  11. beaniebear

    Code benhind not on live server

    I have an inherited a asp.net website where the code behind is not on the live server. I have made a change to the code behind on the development server and have rebuilt the website. But I'm not sure what I need to copy over to the live server to reflect the change there? Sorry if this is...
  12. beaniebear

    Cross tab change colour/surpress field

    I have a cross tab report and I want to add a formula to the numeric fields to surpress or change the font colour to white so that zero's are hidden. I've tried both trying to change the colour to white when the field is <1 and also surpressing the field. Either way has no affect. Any ideas?
  13. beaniebear

    Dynamic Image Crystal reports XI

    I have followed all the steps in the help guide for adding a dynamic image to a report, and I have refreshed the data but the default image is still showing. I have used the following formula :- "c:/images/" + {sp_GetImage;1.ImageName} Any ideas why the images are not showing would be greatly...
  14. beaniebear

    Pass parameters to a report

    I have a report based on the following query :- SELECT Employee.EmpFirstName, Employee.EmpSurname, EmployeeReportsTo.EmployeeID, EmployeeReportsTo.ReportsToID FROM Employee INNER JOIN EmployeeReportsTo ON Employee.EmpID = EmployeeReportsTo.EmployeeID WHERE (((EmployeeReportsTo.ReportsToID)in...
  15. beaniebear

    Staff Database Design

    I have a table of staff which has a primary key called staff emp. I want to be able to store who each member of staff reports to, this will be someone else in the same table. A member of staff can also possibly report to more than one person. Any advice on the table structure that I would...
  16. beaniebear

    Access Viewer

    I'm sure I'm not going mad but I remember seeing an asp.net example where a access report was embedded into a asp.net page. It had all the functionality like being able to print etc. Have been looking everywhere but can't find it? If anyone could point me in the right direction that would be...
  17. beaniebear

    Access 2002 recordset

    Dim db As Database Dim rec As Recordset Set db = CurrentDb() Set rec = db.openrecordset("Employee") Do Until rec.EOF 'more code to go here rec.MoveNext Loop rec.Close Sorry this is probably really simple, but can anyone tell me where I am going wrong? I am getting a...
  18. beaniebear

    Excel Vlookup problem

    I have three worksheets that I am amalgamating into one master worksheet using vlookups. In each worksheet there is an employee number which take the format of '0' followed by 6 other numbers. I pull the employee number from one of the worksheets by doing a direct reference to it. The rest of...
  19. beaniebear

    Dynamically create server controls?

    I have a piece of code in ASP that I now want to produce something similar in ASP.net. This is my first project using ASP.net and am looking for a bit of direction as to how best to achieve this (not expecting anyone to write the code for me!)? The code currently allows the contents of SQL...
  20. beaniebear

    sql server .recordcount

    I am trying to get the record count of a recordset of data from SQL server. I seem to have tried every combination of cursor type and lock type but still getting a 'Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another'. Could someone please advide...

Part and Inventory Search

Back
Top