Search

You searched for the word(s): userid:613156

Matching Posts

  • Re: Use TableAdapters or a Traditional DAL?

    Thanks for the reply For updates, what is the best way you have found for doing these? I think there are 2 options: 1. - Select the details into the datatable, save it in viewstate, then call the update command on the datatable when saving? 2. - use the manual direct commands ( insert, update and delete ) by calling them manually with fields from the html web page? I have read transaction control is a problem, because each function opens and closes the database connection on its own, so not allowing
  • Use TableAdapters or a Traditional DAL?

    Hi With the new Visual Studio 2005, the TableAdapter seems a good thing Can people recommend to use it? Does it have weaknesses in terms of losing flexibility for updating ( transactions ) Is it a safe way to start designing with? Thanks in advance
  • How to use the Repeater ItemCommand event when turning the Repeater Viewstate off?

    Hello I have a repeater control displaying grid data - its summary data with a 'View Details' link for each row The problem is the viewstate it creates is very large - too large But I need to call the ItemCommand event so I can make the 'View Details' link work Is there a way to reduce the viewstate of the repeater but still pass a primary key value to the ItemCommand event Thanks in advance
    Posted to Data Presentation Controls (Forum) by timoth on 4/20/2006
  • Best way to do Search Grid and Detail form?

    I have many search forms that open detail forms What is the best way to open the detail form? 1. Pop up window? 2. Load a user control in the search form that does the maintenance? 3. Separate forms for searching and maintenance? The problem I have is: 1 There are alot of filter conditions in the search and these have to be set as they were when the maintanance window closes to re-display the search results as they were 2, Many Search Forms can open the same Maintenance Form Thanks in advance
    Posted to Web Forms (Forum) by timoth on 4/12/2006
  • Re: server.transfer confuses my style sheet link if I use sub-folders

    Thanks for that Can I check that this works for virtual directories too ie there is a web application at www.domain.com / webapp1 webapp1 is my internet application In webapp1 there is a folder StyleSheets/Project.css So if I link like: <LINK href="/ StyleSheets/Project.css " /> then it will find it using webapp1 as the base directory, not www.domain.com
    Posted to Web Forms (Forum) by timoth on 2/5/2006
  • server.transfer confuses my style sheet link if I use sub-folders

    Hi If I use server.transfer to direct from 1 page to another, if this second page is in a different directory, then my style sheet is not loaded Is there a workaround I can make to define my stylesheet to be more generic? ie I have a web page here: webapp / default.aspx I Server.Transfer to: webapp / SubFolder / sub1.aspx and in sub1.aspx my style sheet is listed as <link href="../project.css > then the style sheet will not load as server.transfer made it think I am still in the root folder
    Posted to Web Forms (Forum) by timoth on 2/4/2006
  • How to hide response.redirect parameters in the web address bar?

    Hi Is there a way to hide the parameters you pass when using response.redirect? ie instead of displaying this: http://localhost/Application/ProjectMaintenance.aspx?id1=8&id2=All I would like to display: http://localhost/Application/ProjectMaintenance Is it possible? Thanks in advance
    Posted to Web Forms (Forum) by timoth on 2/4/2006
  • Re: How to make a readonly form?

    Thanks thats good advice I think I am going for a method where I loop through the controls and where I see an entry field, I will create a literal dynamically, copy in the text from the entry field and then delete the entry field from the form
    Posted to Web Forms (Forum) by timoth on 2/4/2006
  • Re: How to make a readonly form?

    Yes I am trying to make a nice looking form where the data cannot be changed by the user For texboxes I can remove the border and set the readonly = true For dropdown lists its not that easy I am trying to find an alternative to developing a whole new html script that just has literals in it for readonly because that can become a big overhead to create ie one html script for update and one html script for readonly becomes a large overhead Thanks
    Posted to Web Forms (Forum) by timoth on 2/1/2006
  • How to make a readonly form?

    Hi Is there a way to make a web form readonly - particularly for drop down lists I can do it for text boxes but drop down lists just cannot be read if there setting is simply set to disabled Is there a way to make drop down lists look good but also readonly without setting the disabled property? Thanks in advance
    Posted to Web Forms (Forum) by timoth on 1/31/2006
Page 1 of 5 (50 items) 1 2 3 4 5 Next >