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: *

  1. jzelhart

    LinkButton OnClick Event - Calling Code from App_Code

    Thanks to both of you - I will try adding the handler in code. I just enter it as part of the control in the HTML normally. <asp:linkbutton id="LinkButtonPOSITION1" runat="server" causesvalidation="false" commandname="IgnoreRowCommand" onclick="LinkButtonPOSITION1_Click"...
  2. jzelhart

    LinkButton OnClick Event - Calling Code from App_Code

    jbenson001 - thanks I know how to call the code from the codebehind that calls the shared code. Is there a way to do it in the ASPX and if so what is the syntax. Thanks! Hope everyone is having a great day! Thanks - Jennifer
  3. jzelhart

    LinkButton OnClick Event - Calling Code from App_Code

    I have multiple pages that have LinkButtons that have the exact same code behind them. Is it possible to call/link code from a shared class like one in App_Code directory instead of the code behind page? I still need the code behind for the code that is different. I have searched and can't find...
  4. jzelhart

    Trigger - works most of the time but fail when one field is updated

    FYI - I did the drop and replace on the table - the trigger works. This worries me... Hope everyone is having a great day! Thanks - Jennifer
  5. jzelhart

    Trigger - works most of the time but fail when one field is updated

    I have a trigger - works for all other tables at this point. It works for Insert, Update of multiple fields but fails 95% of the time when updating 1 field. I can duplicate this in SQL Server Management Studio manually. i have tried rebuilding statistic and indexes on the table as well as the...
  6. jzelhart

    PageRequestManagerParserErrorException in Firefox

    Thank you for the response. I have tried/checked everything on this page. Have a great day! Hope everyone is having a great day! Thanks - Jennifer
  7. jzelhart

    PageRequestManagerParserErrorException in Firefox

    I have a tester that is getting this error randomly when clicking on Gridview Link (Sorting, Paging etc.) in FireFox. We use the Microsoft AJAX Update Panel with Partial Rendering. It is reproducable but doesn't happen everytime. Everything that I have found on the web, I have tried such as we...
  8. jzelhart

    CSS Format Differently from Dev IIS to Server IIS

    I accidentally found the solution and wanted to post for those searching... I had to add the following to the Web.Config System.Web section. <xhtmlConformance mode="Transitional"/> Thanks! Hope everyone is having a great day! Thanks - Jennifer
  9. jzelhart

    IIS on XP display different then IIS on 2003

    I found the solution by accident... The following had to be added to the Web.Config System.Web section... <xhtmlConformance mode="Transitional"/> Thanks TheCandyman Hope everyone is having a great day! Thanks - Jennifer
  10. jzelhart

    IIS on XP display different then IIS on 2003

    Which post was it that I had my full name in? Nt that it matters with my screen name... Thanks for your help, It is weird because it is mostly CSS and HTML differences, not code. For example I format link buttons to look like buttons so that I can control them instead of the browser deciding...
  11. jzelhart

    IIS on XP display different then IIS on 2003

    Can anyone help me with a display issue that I am having? I have a ASP.NET website using CSS/theme. On my development machine which is XP with IIS turned on and setup to work with Visual Studio 2005 the website look good and works as expected. I copy the whole directory to the webserver (we are...
  12. jzelhart

    CSS Format Differently from Dev IIS to Server IIS

    When I run the ASP.NET 2.0 from development machine. The CSS looks good but when I do an XCopy deployment the CSS changes - buttons cut off, extra line put in. Same size window, same browser. Just different IIS - am I missing an update or setting... Thanks in advance. Hope everyone is having a...
  13. jzelhart

    linkbutton control

    You could also call code passing the option outside of you linkbutton code. protected void a1_OnClick(object sender, EventArgs e) { CallCode("a1") } public void CallCode(string sWhichButton ) { //code needed... } Hope everyone is having a great day! Thanks - Jennifer
  14. jzelhart

    linkbutton control

    You need to create an event for the linkbutton... onclick="a1_OnClick" in the HTML for the linkbuttons protected void a1_OnClick(object sender, EventArgs e) { TextBox txt = new TextBox(); txt = (TextBox)this.LoginControls.FindControl("NameOfTextBox"); txt.Text...
  15. jzelhart

    GRIDVIEW: edititemtemplate rowcommands not firing...

    More info... the same code works without any problem without the MasterPage ContentPage... Any body have experience with MasterPages and GridView? Hope everyone is having a great day! Thanks - Jennifer
  16. jzelhart

    Gridview and Content Page

    I am not sure but you might check the PagerSettings make sure that is setup correctly. Hope everyone is having a great day! Thanks - Jennifer
  17. jzelhart

    Gridview and Content Page

    I also bind the data manually but I use the dataset instead of the adapter. The paging worked in a content page for me. Maybe you could give that a try. Hope everyone is having a great day! Thanks - Jennifer
  18. jzelhart

    Gridview and Content Page

    How are getting the data into the gridview? SQLDataSource - ObjectDataSource or binding manually? If manually are you binding to a dataset or to a reader? Hope everyone is having a great day! Thanks - Jennifer
  19. jzelhart

    ASP.NET Installed?

    I am not sure what you mean but... You can open IIS and look at a website and see if there is an ASP tab - that would show you the version. If it doesn't exist then the Framework is not installed. Hope everyone is having a great day! Thanks - Jennifer
  20. jzelhart

    GRIDVIEW: edititemtemplate rowcommands not firing...

    <asp:gridview id="GridViewLookupCodes" runat="server" allowpaging="True" allowsorting="True" autogeneratecolumns="False" cssclass="GridViewGrid" datakeynames="LKUPiID" pagersettings-mode="NextPreviousFirstLast" pagersettings-firstpagetext="First" pagersettings-lastpagetext="Last"...

Part and Inventory Search

Back
Top