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 TouchToneTommy 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: jzelhart
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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"...
  7. jzelhart

    Response.Redirect Problem

    Ok this is weird. The code works fine when I run it from Visual Studio 2003. But when I post it to the server, the following code no longer works. I tried adding a call to my UpdateRecord to save the record prior to moving to another webform. I even tried making that code a function and only...
  8. jzelhart

    Previously Entered Values

    Ok I don't know the technical term hence the searches that I have tried... failed. On my development machine the fields don't show the previously typed values in a drop down type of field on a textbox (probably from a messagebox answer IE setting.) But on the machine that we used for the demo...
  9. jzelhart

    CSS Color for Link Button

    I am trying to set the Forecolor for LinkButtons in a Panel that is set by CSS. I can get other features to work like font size etc but not the forecolor. I have color set in my style and from reading another post tried setting text-decoration to none. CSS Code [Code] .FooterBar {...
  10. jzelhart

    Visual Studio 2005 - Referenced Assembly...

    I am try work on an app that was upgraded to 2005 and I received the following warnings. I haven't figured out how to reference the class in an assembly - any direction would be helpful. Warning : Please make sure class 'class name' is defined in code folder or in a reference assembly. I can...
  11. jzelhart

    Windows 2003 Server Problems with Response.Redirect...

    On the Windows 2000 Server everything worked fine on this application as well as on my development machine Windows XP. But on two pages clicking on a hyperlink that passes a query string only brings up a white screen - the correct path is in the address. If I change and fix the address and hit...
  12. jzelhart

    ASP.NET 2.0 - Any issues?

    Has anyone installed the Visual Studio 2005 Beta to create ASP.NET 2.0 websites And kept Visual Studio 2003 to maintain/create ASP.NET 1.1 Websites? Any problems? Any Concerns? Also can you publish websites that you have created in 2.0 for use prior to release copy? Hope everyone is having a...
  13. jzelhart

    Session Values - Multiple Projects in Solution...

    Ok I am trying to break a larger solution into projects (multiple tier development and multiple software groupings) I had this working when the presentation tier was all in one project. I used Sessions to pass some small things needed in the next page. When I broke this into multiple projects...
  14. jzelhart

    Backup Material for VB.NET/ASP.NET versus Visual Foxpro

    Looking for some direction... My company purchased another company. They program in Foxpro and Visual Foxpro. We do Visual Basic and now VB.NET/ASP.NET. I need to find some backup material for my fight to stay with VB.NET. We are software development company, so we develop software for resale...
  15. jzelhart

    Drop Down List in Datagrid Template Column

    How do I refer to the Drop Down List Control so that I can fill the list with data? HTML for the EditItemTemplate: <EditItemTemplate> <asp:DropDownList id=&quot;cboClientCityState&quot; runat=&quot;server&quot; SelectedIndex='<%# DataBinder.Eval(Container...
  16. jzelhart

    Next items wrapping to the right of Datagrid - Fine in Design View...

    Ok this shows up fine in Design View but when running the buttons go to the right of the Datagrid. I am using Flowlayout. I do set visibility for some of the buttons based on management status. Any ideas... I am sure I am missing something. Here is the HTML <%@ Page Language=&quot;vb&quot...
  17. jzelhart

    Minimum Client Requirements

    I have a webform that has Textboxes on it. I have a few users that don't see the textboxes. I have them run Windows Update - updating all of the critical updates plus install the Framework 1.1 and then the textboxes appear. I have users that don't have the problem and don't have the Framework...
  18. jzelhart

    HyperLink/LinkButton work on Dev Machine but not Web Server

    First I had a HyperLink with a NavigateURL set to the string below. Then I tried a Link Button that executes the code below. This works when ran from Development Maching and when connecting to that machine from other computers. I deployed it to the Web Server and everything but this works...
  19. jzelhart

    Move out of field with Validation Event with mouse

    I have a field with a Validate Event that gives you an information only msgbox. The user clicks OK and should be able to move on. If they use the Tab button to move to the next field, this is not an issue. But if they use their mouse to click on another field, they can not type in that field...
  20. jzelhart

    Session Variables - Return Error

    I get the following error when I try to retrieve Session Variables using this code: Dim mstrPassword As String = CType(Session.Item (&quot;gstrPassword&quot;), String) Exception Details: System.Web.HttpException: Session state can only be used when enableSessionState is set to true, either...

Part and Inventory Search

Back
Top