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 dencom 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: Gruuka
  • Content: Threads
  • Order by date
  1. Gruuka

    Linq + repository classes

    Greetings, In a current vs solution I have 2 projects, 1 holds the linq datacontext classes and another holds the business model. Inside the business model I created a class which inherits from my datacontext like so; Public Class <snip>DataModel Inherits <snip>DataContext In...
  2. Gruuka

    Ajax:ModalPopupExtender and dropdowns

    Hello, I have a problem with the ModalPopupExtender control and dropdowns, it's the following issue: as soon as the modalpopupextender is shown Dropdownlists dissapear from the page itself and when the extender control is closed the Dropdownlists reappear again. The code on the page looks as...
  3. Gruuka

    Debugging url rewriting within Visual Studio 2005

    Hello all, I was wondering about the following issue, at the moment an url rewrite module is being implemented into one of the company's sites. However this site will need future updates so the use of debugging is needed. The problem starts with the use of the response.rewritepath method...
  4. Gruuka

    mshtml application speed

    Hello all, I am using mshtml in a asp. Looping trough every element, changing it/writing it back to the page seems to work fine but there is one annoyance. Calling the mshtml object and filling it makes the page's loading time alot longer (say 4-5 seconds). Now for the company's site this is...
  5. Gruuka

    HttpModule + render method

    I am currently developing a Httpmodule for url rewriting and I would like to have an extra feature with it: the module should both handle the url rewrites and if possible access the htmlsource of the page so it can move the viewstate and actually rewrite links on the site. I found out that the...
  6. Gruuka

    RowNum() and Order by

    My colleague made an sql query where he uses Rownum to sort the selection with, now his query is setup like the following: Select *,RowNum From (select rownum() over(id) from test) as RowNum where -- order by RowNum The thing that is happening in this code is that a subtable is selected...
  7. Gruuka

    Unexpected query results

    Hello, I am facing a problem with one stored procedure that I made using a method in the WHERE clause that worked in other queries. ALTER PROCEDURE backend_GetReferrers -- Add the parameters for the stored procedure here @Filialen_ID varchar(6) = null, @Omschrijving varchar(100) = null...
  8. Gruuka

    Gridview dynamic controls on Masterpage

    Hey everyone, i created a masterpage and linked a page that has a gridview linked to a contentplace holder on that master page, now this is working. But there is a problem with controls when i cast a object as control that excists in the gridview to a textbox by using FindControl on...
  9. Gruuka

    Using the alter statement combined with parameters

    Hey people I am trying to alter a table structure by using paramaters for the column name and type that alters expects. Alter Table dbo.Tarieven Add @column_name @type But this gives an error when i compile the procedure (i think it's due to the cast type of the parameters). Can anyone give...
  10. Gruuka

    Wrong textbox.text values at form submit

    Hey all, I have a problem with a form that i am submitting here's what's going on: - A gridview is populated with values and html textbox controls varying on sql column data types (this happens on each page_init) the gridview's viewstate along with those controls is disabled - when the submit...

Part and Inventory Search

Back
Top