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