Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

SatyaKeerthi15

@SatyaKeerthi15
About
Posts
58
Topics
29
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Close Pop Up windows
    S SatyaKeerthi15

    I have a problem with pop windows. When I Open Pop up page, do actions on that and go back to parent page. In Parent page if user click on logout or if session expired,how to close pop up windows.

    C# help tutorial

  • Find Gridview Footer Row
    S SatyaKeerthi15

    I have to Find Gridview Footer Row in Javascript. Is there any chance to show/hide footer row in javascript. How to Find Label in Footer Row.

    JavaScript javascript tutorial

  • Find Label in Gridview Footer Row in javascript
    S SatyaKeerthi15

    I have to Find Gridview Footer Row in Javascript. Is there any chance to show/hide footer row in javascript. How to Find Label in Footer Row.

    C# javascript tutorial

  • Add New Row dynamically to Gridview
    S SatyaKeerthi15

    If I search with the keyword "asp .net gridview add new row" in google, Controls which we design in the Gridview get added but I want to add text box for New row and Labels for existing data. Hope nobody post here with out browsing in the web. Mind your language.

    .NET (Core and Framework) css question

  • Add New Row dynamically to Gridview
    S SatyaKeerthi15

    I have Gridview with Label controls. When I click on linkbutton on top of the grid new row with Textbox control to be added to the Gridview. How can I get this.

    .NET (Core and Framework) css question

  • Print numbers
    S SatyaKeerthi15

    I have to call function to print numbers. For Example if I pass 5 as parameter function has to return 1 2 3 4 5 Is declaring Temp table and Get this result is good way? Is there any alternate

    Database tutorial question

  • Enable/Disable LinkButton in Javascript
    S SatyaKeerthi15

    If Set href and click on link button again its loading page. Is it the good way to load page agian when click on linkbutton in same page.

    C# javascript

  • Enable/Disable LinkButton in Javascript
    S SatyaKeerthi15

    Yes I tried it like below, document.getElementById(lkbtn).removeAttribute("href"); This works fine. But when i am adding attribute it raises error. document.getElementById(lkbtnEditMap).addAttribute("href"); So i did like this document.getElementById(lkbtnEditMap).setAttribute("href"); enable/disable works fine but when click on link button it showing error like resource cannot be found....

    C# javascript

  • Enable/Disable LinkButton in Javascript
    S SatyaKeerthi15

    I want to disable a LinkButton click on the client site. if(true) objLinkButton.disabled = true; else objLinkButton.disabled = false; This disables the link but I am still able to click on the link and do PostBack. Is there any way I can disable/enable the link.

    C# javascript

  • Text
    S SatyaKeerthi15

    I aasigned Text to the Textbox from code behind like "Showing "+Test+" message ..."; Its not displaying Test in bold.How can I do this

    C# question

  • Textbox Text
    S SatyaKeerthi15

    I aasigned Text to the Textbox from code behind like "Showing "+Test+" message ..."; Its not displaying Test in bold.How can I do this

    C# question

  • Checkbox List Item Value
    S SatyaKeerthi15

    I have CheckBoxList. I am binding data to checkbox List from DataBase. How can I Get Listitem value using Javascript.

    C# javascript database wpf wcf question

  • Close iframe Div in javascript
    S SatyaKeerthi15

    Button is in one 2.aspx page and frame in 1.apsx. How can I Close frame in 1.aspx from 2.aspx. My subject itself mentioned close frame in javascript not in c#.

    ASP.NET question csharp javascript

  • Close iframe Div in javascript
    S SatyaKeerthi15

    I have an aspx page. In that page I am displaying div when click on link. Div contains iframe and i am assigning url to the frame like below. // Function to Show the Div // function ShowDiv(CtrlName) { document.getElementById('divUserCtrl').style.display = 'inline'; frames['ifrm'].window.location = "CreateProject.aspx?ProjCat=G"; return false; } when click on linkbutton can able to display div and redircting to CreateProject page. But in CreateProject when click on a button i need to close this div. How can I do this in c#. I tried like Page.RegisterStartupScript("Reload", "window.close();"); But no luck :(

    ASP.NET question csharp javascript

  • Close iframe in Div
    S SatyaKeerthi15

    I have an aspx page. In that page I am displaying div when click on link. Div contains iframe and i am assigning url to the frame like below.

    X

    // Function to Show the Div // function ShowDiv(CtrlName) { document.getElementById('divUserCtrl').style.display = 'inline'; frames['ifrm'].window.location = "CreateProject.aspx?ProjCat=G"; return false; } when click on linkbutton can able to display div and redircting to CreateProject page. But in CreateProject when click on a button i need to close this div. How can I do this in c#. I tried like Page.RegisterStartupScript("Reload", "window.close();"); But no luck :(

    C# question csharp

  • Get hirarchy query
    S SatyaKeerthi15

    I did that ... As everytime sp excutes output displays like multiple tables but not in one table

    Database database question

  • Bind sql print statement to dropdown
    S SatyaKeerthi15

    I have print statement in Sql Sp. How can I bind print statement to DropdownList

    C# sharepoint database question

  • Get hirarchy query
    S SatyaKeerthi15

    This is the sp I have tried. I am getting what I want but in print statement. How to convert it into Table. ALTER PROC [dbo].[spa_R_TeamDetails] @ReportsTo INT AS BEGIN SET NOCOUNT ON DECLARE @PersonId INT, @DisplayName VARCHAR(100) SET @DisplayName = (SELECT DisplayName+'~'+CONVERT(VARCHAR,PersonId)+'~'+OrgEmpId TeamMembers FROM Person WHERE PersonID = @ReportsTo) PRINT REPLICATE('- ', (@@NESTLEVEL * 1)-1) + @DisplayName SET @PersonId = (SELECT MIN(PersonId) FROM Person WHERE ReportsTo = @ReportsTo) WHILE @PersonId IS NOT NULL BEGIN EXEC spa_R_TeamDetails @PersonId SET @PersonId = (SELECT MIN(PersonId) FROM Person WHERE ReportsTo = @ReportsTo AND PersonId > @PersonId) END END -- spa_R_TeamDetails 1781

    Database database question

  • Get hirarchy query
    S SatyaKeerthi15

    This is the sp I have tried. I am getting what I want but in print statement. How to convert it into Table. ALTER PROC [dbo].[spa_R_TeamDetails] @ReportsTo INT AS BEGIN SET NOCOUNT ON DECLARE @PersonId INT, @DisplayName VARCHAR(100) SET @DisplayName = (SELECT DisplayName+'~'+CONVERT(VARCHAR,PersonId)+'~'+OrgEmpId TeamMembers FROM Person WHERE PersonID = @ReportsTo) PRINT REPLICATE('- ', (@@NESTLEVEL * 1)-1) + @DisplayName SET @PersonId = (SELECT MIN(PersonId) FROM Person WHERE ReportsTo = @ReportsTo) WHILE @PersonId IS NOT NULL BEGIN EXEC spa_R_TeamDetails @PersonId SET @PersonId = (SELECT MIN(PersonId) FROM Person WHERE ReportsTo = @ReportsTo AND PersonId > @PersonId) END END -- spa_R_TeamDetails 1781

    Database database question

  • Get hirarchy query
    S SatyaKeerthi15

    I tried below stored procedure. I am getting the result what I want but its print statement. How can I convert this into table. ALTER PROC [dbo].[spa_R_TeamDetails] @ReportsTo INT AS BEGIN SET NOCOUNT ON DECLARE @PersonId INT, @DisplayName VARCHAR(100) SET @DisplayName = (SELECT DisplayName+'~'+CONVERT(VARCHAR,PersonId)+'~'+OrgEmpId TeamMembers FROM Person WHERE PersonID = @ReportsTo) PRINT REPLICATE('- ', (@@NESTLEVEL * 1)-1) + @DisplayName SET @PersonId = (SELECT MIN(PersonId) FROM Person WHERE ReportsTo = @ReportsTo) WHILE @PersonId IS NOT NULL BEGIN EXEC spa_R_TeamDetails @PersonId SET @PersonId = (SELECT MIN(PersonId) FROM Person WHERE ReportsTo = @ReportsTo AND PersonId > @PersonId) END END -- spa_R_TeamDetails 1781

    Database database question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups