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 Mike Lewis 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. JanVolley

    Pre-populating an ObjectDataSource object before insert

    I'm using asp.net 2.0 and C#. I have a data entry screen. When the user clicks the 'Save' button, a record is saved to the database. I'm using an ObjectDataSource in my form as follows: <asp:ObjectDataSource ID="CourseProfileDataSource" runat="server" DataObjectTypeName="CourseProfile"...
  2. JanVolley

    Best practice of saving parent/child data from a data entry form

    Your link doesn't really go anywhere. Not sure I understand what this is. Is this a product or a design pattern?
  3. JanVolley

    Best practice of saving parent/child data from a data entry form

    I'm using asp.net 2.0 and C#. I have a data entry web form that contains a formview that is bound to a cpDataSource. The cpDataSource specifies an 'InsertMethod' that is contained in a db access class. The web form contains alot of textboxes but also contains two CheckBoxList's. Each...
  4. JanVolley

    Field values not displaying in EditMode of Gridview

    Thank you SO much! I knew it had to be something simple, but it was driving me crazy. I have no idea how that # got removed because it was there originally and was working before I added the FooterTemplate and the EmptyDataTemplate.
  5. JanVolley

    Field values not displaying in EditMode of Gridview

    I'm using asp.net 2.0 and C#. I have a gridview with templates defined (ItemTemplate, EditItemTemplate, and FooterTemplate). <asp:GridView EnableTheming="true" ID="TTIGrid" ShowFooter="true" runat="Server" DataKeyNames="ttiID" DataSourceID="TTIDataSource" OnRowCommand="TTIGrid_RowCommand"...
  6. JanVolley

    NumberUpDownExtender Control

    I'm using asp.net 2.0, so don't have the AJAX asp extension. I work at a govt facility that doesn't allow us to install anything unless it is approved first. Getting things approved can take awhile. I was wondering if anyone has implented their own NumberUpDownExtender-like control without...
  7. JanVolley

    html 'onblur' code does not compile

    It builds fine when I remove the 'onblur'.
  8. JanVolley

    html 'onblur' code does not compile

    The problem is that I am not able to build my application (via Visual Studio build) without getting the error that says that the 'onblur' attribute is not valid. Even if I still run the application, the 'onblur' isn't working there either. The application is a data entry form that has a date...
  9. JanVolley

    Modal window in web app?

    I am a newbie to javascript and web development. I have an asp.net web form and am trying to popup a DataPicker-like modal window so that the user can select a date from a calendar. I think this is pretty typical stuff. I'm trying to do what is described at...
  10. JanVolley

    html 'onblur' code does not compile

    According to: http://www.htmlcodetutorial.com/document/_BODY_onFocus.html, the body can be blurred. Plus I see lots of other examples on other websites too, so I'm a little confused. I meant to say that I cannot BUILD my website, not compile it. I AM using Javascript to popup a window that...
  11. JanVolley

    html 'onblur' code does not compile

    This has got to be a simple question. I am a newbie to asp.net and haven't used html much either. I'm trying to do what is described at: http://www.15seconds.com/issue/040315.htm, but I get the following error on my DatePicker.aspx: "Validation (XHTML 1.0 Transitional): Attribute 'onblur' is...
  12. JanVolley

    FormView Template - how to arrange controls via Designer

    I've already created a table (I have all the textboxes in one column right now), but the Designer still doesn't allow me to move the textboxes around. Should it? I have several formviews that will have alot of fields. It would save alot of time and work to be able to initially place these...
  13. JanVolley

    FormView Template - how to arrange controls via Designer

    So there's no other way besides editting the source manually to move the controls around? Visual Studio won't create the html table for you with the Designer?
  14. JanVolley

    FormView Template - how to arrange controls via Designer

    I'm new to asp.net and am working with formviews and asp.net 2.0 and Visual Studio 2005. I have a formview where I'm editting an InsertItemTemplate that has a bunch of textboxes/labels for data entry. I'm not able to arrange the textbox/label control with the Designer after I get into the...

Part and Inventory Search

Back
Top