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
A

Amol 111

@Amol 111
About
Posts
6
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Whats error in the bold line
    A Amol 111

    Dim sql As String = ("Delete from Categories WHERE CategoryID in (" & +test & ")")

    ASP.NET database help

  • customized reports with calendars and dropdown list
    A Amol 111

    Take a blank .rdlc (report1.rdlc). create .xsd file (say dsReport.xsd). Create datatable in dsReport (say dtReport).Include (or create manualy) fields required in the datatable,dtReport. Drag those fields in ur rdlc. in code behind

    using Microsoft.Reporting.WebForms;

    reportViewer1.Visible = true;
    reportViewer1.ShowToolBar = true;
    reportViewer1.SizeToReportContent = true;
    reportViewer1.LocalReport.ReportPath = "report1.rdlc";
    reportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local;
    //Note:DisplayReport will be your method to get data based on your parameters with return type as datatable.
    DataTable dtReportSource = DisplayReport(fromDate,todate,process);

    //Note schema for dtReport and dtReportSource should match.
    //Note: name format of dataset and datatable in .xsd file

    reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("dsReport_dtReport", dtReportSource ));

    ASP.NET question

  • Help on Grid View
    A Amol 111

    Search for parent Child relation in gridview. also take a look at this Multilevel Nested Master/Detail Data Display Using GridView[^]

    ASP.NET css help tutorial

  • how to highlight newly inserted record in a gridview with paging=true?
    A Amol 111

    Assuming your first row of gridview is the last inserted record in design mode provide backcolor in SelectedRowStyle or in your CSS. then in ur insert function after Binding gridview write the below line

    gridview1.SelectedIndex = 0;

    ASP.NET tutorial question

  • Enable options according to button click [modified]
    A Amol 111

    WEBSITES are u sure or they are like page1.aspx,page2.aspx,page3.aspx.

    ASP.NET help css database

  • How to put java script....
    A Amol 111

    try this

    if (!IsPostBack)
    {
    TreeNode Parentnode = new TreeNode("Home");
    TreeNode node = new TreeNode("Organization","","","'Organization.aspx","_blank");
    //node.NavigateUrl = "javascript:window.open('Organization.aspx','mywindow','width=750,height=600');";
    Parentnode.ChildNodes.Add(node);
    TreeView1.Nodes.Add(Parentnode);
    }

    ASP.NET java tools help tutorial
  • Login

  • Don't have an account? Register

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