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

ShruthiLavan

@ShruthiLavan
About
Posts
8
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Remove Items From Listbox
    S ShruthiLavan

    How to remove multiple selected items from a listbox? Thanks in advance..

    You can't do everything... But you can do something... So never refuse to do something that you can.....

    ASP.NET tutorial question

  • Wizard inside UpdatePanel
    S ShruthiLavan

    I have a Wizard control with in updatepanel . I am trying to create dynamic wizard steps in page pre_init event, but it is giving me an error " object reference not set to an instance of an object" . without updatepanel it's working properly. Thanks in Advance

    You can't do everything... But you can do something... So never refuse to do something that you can.....

    ASP.NET help

  • Export the Data to Excel
    S ShruthiLavan

    Try this.. Add the following code before export to excel. GridView1.AllowPaging = False GridView1.DataBind() In the pageload set allowpaging true to the gridview

    You can't do everything... But you can do something... So never refuse to do something that you can.....

    ASP.NET css help question

  • TextBox Multiline Mode is not working in Content Placeholder ******
    S ShruthiLavan

    The multiline mode is working fine. Just verify mutiline mode is set or not.

    You can't do everything... But you can do something... So never refuse to do something that you can.....

    ASP.NET csharp asp-net help question

  • WebParts - Declarative CatalogPart
    S ShruthiLavan

    In the declarative catalog part i have a image control. When i add the image in webpartzone in the catalog displaymode at runtime, The image control is displayed without the image. Similarly in dropdownlist, the list items are not displaying.

    You can't do everything... But you can do something... So never refuse to do something that you can.....

    ASP.NET

  • How to create dynamic column........
    S ShruthiLavan

    create an instance of field type that you want to add in your gridview. For eg,If you want to create a buttonfield, create an instance of buttonfield. Dim col1 As New ButtonField Next set the basic properties for that instance. col1.HeaderText = "ButtonColumn" col1.ButtonType = ButtonType.Button col1.Text = "Click" Add that instance to your gridview GridView1.Columns.Add(col1) with regards, lavanya

    ASP.NET help css tutorial

  • excel document
    S ShruthiLavan

    In visual studio 2005, Add the reference - Microsoft office 10.0 object Library to your project. Add the following code in button click event Dim excel As New Excel.Application Dim wbook As Excel.Workbook Dim wSheet As Excel.Worksheet wbook = excel.Workbooks.Add() wSheet = wbook.ActiveSheet() Dim strFileName As String = "The location to save the excel file" wbook.SaveAs(strFileName) excel.Workbooks.Open(strFileName) excel.Visible = True Try it and check whether its working. with regards, lavanya

    ASP.NET csharp asp-net tutorial

  • What's the Difference between an asp:Literal control and an asp:Localize control?
    S ShruthiLavan

    The Localize control is identical to the Literal Web server control and its inherited from Literal control. For a literal control, We can set the property either at design time or programaticaly.But for localize control, we can set only at runtime. with regards, lavanya

    ASP.NET html 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