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. silicon

    Removing this Http Module

    Thanks jmeckley for reply. Yes,there is performance problem. In few of screen "operation time out" message comes. But i have checked the application with and without this configuration ,I didn't noticed any performance gain. Is there any tool by using we can measure the performance gain?
  2. silicon

    Removing this Http Module

    Please let me know is it recommended to remove the unused HttpModules.Will there be any performance gain?
  3. silicon

    Removing this Http Module

    Hi All, Our application does not use any of the following Http Modules. WindowsAuthentication PassportAuthentication AnonymousIdentification FileAuthorization UrlAuthorization OutputCache By default these Http modules are enabled in machine.config file, If we configure web.config...
  4. silicon

    Changing the order of the columns displayed in the Data Grid

    Yes,your suggestion is good. Do you have a sample code snipet for this drag drop implimentation
  5. silicon

    Changing the order of the columns displayed in the Data Grid

    Hi All, My data grid display a 50 column.I want to give a option to a user to change the order of column as per his requirement. Current implimentation(dot net 1.1) is using Static Bound Columns with AutoGenrateColumns = False Is any good way of implimenting this feature with less impacat on...
  6. silicon

    State management accross the application

    Can i get all the session variables of App_One in my App_Two by writting the custom session state provider in App_Two and without disturbing the App_One. Regards, pits
  7. silicon

    State management accross the application

    BoulderBum you r absolutely right but App_One is huge application and client is not ready to pay for the breaking changes required to migrate from 1.1 to 2.0 and also being an insurance application it run 24X7 and client is not ready for downtime and on the contrary the client wants the next...
  8. silicon

    State management accross the application

    App_One(developed in asp.net 1.1 ,sessionState mode="InProc"). App_two is a phase2 of App_One need to be devloped in asp.net 2.0 So I want to know if a user login in App_One can use the App_Two and share the session,cokies etc(I mean state management) accross the application. If both the...
  9. silicon

    How to access a dll using t-sql query

    Hi, I am having a dll called encrypt-Dcrypt i want access it in t-sql.I mean i want use this dll in my query analyser to encrypt or decrypt the data. I am using sql server 2000. thanks in advance Regards, Pits
  10. silicon

    Session Time Out problem happenning frequently

    The Solution was IIS 6.0 Application Pools setting When running IIS 6.0, there's a setting in the Application Pools that limits the worker process of sitting idle. So even if you set all the session timeouts to be really high in Web.config or machine.config, the worker process runs in its own...
  11. silicon

    Session Time Out problem happenning frequently

    Hi, Below is my current configuration in web.config file. But session time out is happenning even if I am contineaously browsing or searching or requesting for new pages. Is any idea where i need to change the configuration <authentication mode="Forms"> <forms loginUrl="Login.aspx"...
  12. silicon

    Spliting coloum data

    Thank once again onpnt for guide line.I got the solution from that url.
  13. silicon

    Spliting coloum data

    MyColumn contain data like "pqrst#12345" What will be the sql query in sqlserver 2000 to split the coloumn data as a result like Coloumn1 Coloumn2 pqrst 12345 Thanks in advance
  14. silicon

    tracing current method/event in apllication level in asp.net 1.1

    I think there is no way u can get the current event fired in the application level.you need to write a code in each page for logging
  15. silicon

    tracing current method/event in apllication level in asp.net 1.1

    my aspx page design contain 4 command button and each click display different report. my application contain 150 such aspx page. Now i want to write a code for logging which report is fired each time. I want to trace a current page,current method/current event i tried application_beginrequest of...
  16. silicon

    If No record found in child table for asp.net 2.0

    How can i find table name from my sqldatasource control
  17. silicon

    If No record found in child table for asp.net 2.0

    I have used sqldatasource In that case how can i know the datatable name. Pls. go through this code and give me some practical solution. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  18. silicon

    If No record found in child table for asp.net 2.0

    Basicaly its an master detail senario where dropdown list contain master data,and on selection of dropdown list the details is displayed in gridview.Detailview is used to add or edit detail record. If suppose on selection of dropdown list if no record found for that master record nothing is...
  19. silicon

    If No record found in child table for asp.net 2.0

    I don't know which event i should use to invoke detailview when there is no record in child table
  20. silicon

    If No record found in child table for asp.net 2.0

    Hi, In asp.net 2.0 i am using dropdownlist box,gridview and an detail view. Master record are choosed from dropdown list box and an child record are displayed in gridview.On clicking of select button of gridview ,detailview is displayed with edit and new button.I had bind all three control using...

Part and Inventory Search

Back
Top