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 wOOdy-Soft 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: karth23
  • Content: Threads
  • Order by date
  1. karth23

    New updated record not reflected in Reports

    I am using Crystal Reports.NET CrystalViewer Control one of my .aspx page. If I add a records in a Datagrid that record not reflected in my Report Page. It would be appriciated if any one provide solution to resolve it. DataPage.aspx - Updating Records in Datagrid ReportPage.aspx -...
  2. karth23

    How to make all rows editable in DataGrid

    How to make all rows editable in the DataGrid at a time? Thanks in advance! Bala,Karthik
  3. karth23

    DataGrid Column Sorting

    Public Sub SortCommand_OnClick(ByVal Source As Object, ByVal E As DataGridSortCommandEventArgs) DsAddressBook1 = Session("dsAddressUSA") Dim dv As DataView = DsAddressBook1.ADDRESS_LST.DefaultView dv.Sort = E.SortExpression dgUSA.DataSource = dv...
  4. karth23

    Debugging ASP.NET Application

    I couldn't debug my ASP.WEB Application. If I press F11 it shows the following msg "Error while trying to run project: Unable to start debugging on the server. A debugger is already attached. Would you like to disable future attempts to debug ASP.NET pages for this project?" Even...
  5. karth23

    SelectedIndex Value from Bound Control

    I have 3 Tables Data Structure Below Table1: ADDRESS_ID INT ( Seed ) Primary Key ST_ID INT Foriegn Key CNT_ID INT Foriegn Key First_NM NVARCHAR(50) Table 2: ST_ID INT Primary Key ST_CD INT ST_NM NVARCHAR(50) Table3: CNT_ID INT...
  6. karth23

    URGENT: How to Add Identity Col Value !

    DsAddressBook1 is the Dataset The Table "Address_Lst" has an Identity Col "ADDRESS_ID "(seed) Dim dt As DataTable = DsAddressBook1.Tables("Address_Lst") Dim dr As DataRow = DsAddressBook1.ADDRESS_LST.NewRow dr("FIRST_NM") = txtFirstName.Text.Trim...
  7. karth23

    How to Handle LogOff Page in ASP.NET

    Any one can give some sample or suggestion for LogOff user's section using ASP.NET Karthik
  8. karth23

    Dropdown Menu in Web Forms

    I want to create a Dropdown Menu in my Web Form (WebForm1.aspx) If would be appreciated if any one give a solution or any references for the above! Karthik Bala devlnk@hotmail.com
  9. karth23

    ASP.NET Quickstart Tutorial Source code not displaying

    Hi I am working on MS Visual Studio Enterprise Architech - English. When I open the link in ASP.NET Quickstart tutorial Samples 'View Source Code' Link in the samples It displays the following message(not showing original code). Source Viewer Error: cannot show this file Either the file does...

Part and Inventory Search

Back
Top