Dropdownlist within DetailsView
Tue, 10 Jun 2008 08:57:01 -0700
Hi all,
I'm using DetailsView for my page. I have Dropdownlist in Templatefield for
EditItemTemplate and InsertItemTemplate. When users pick any item in
dropdownlist then I need to populate values for 5 textbox in detailsview. I
can do by using button with CommandName to populate values. I do not want the
u ...
|
Unable to edit Gridview
Mon, 9 Jun 2008 20:04:54 -0700 (PDT)
Hi,
I have an aspx page with a user controls in it. The user control has a
Gridview that is programatically data bound, AutoEdit button is
enabled. The gridview edit, cancel and update events are wired to
respective methods in the code behind. Here's the problem, when I
click on the edit link for any row in ...
|
Reference "Programmatic" Gridview Control on Postback
Mon, 9 Jun 2008 15:02:01 -0700
Hi, my gridview has a label field which I'm replacing with a dropdownlist at
the time of databind with this code:
Dim lblType As Label = CType(e.Row.FindControl("lbltype"), Label)
e.Row.Cells(Cnst.Cells.AccountType).Controls.Remove(lblType)
Dim ddlType As New DropDownList
ddlType.ID = "ddlType"
ddlType.It ...
|
No overload error???
Mon, 9 Jun 2008 10:41:28 -0400
HI,
I'm getting this error:
No overload for 'DoItemUpdated' matches delegate
'System.Web.UI.WebControls.DetailsViewUpdatedEventHandler'
on line=22
Line 22 reads:
<asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="false"
style="top: 25px; left: 15px; position: absolute; width: 62 ...
|
Search in Dataview and Highlight Text
Fri, 6 Jun 2008 20:30:40 +0200
Hi,
I've got a database that contain sentences. I created an ASP site that
displays the sentences in a datagrid. Users can then search for specific
words and the datagrid displays the sentences that contain the words.
To improve readability, I want to to highlight the search word in each
sentence (for examp ...
|
How can users paste tabular data into a web-based VB.NET app?
Thu, 5 Jun 2008 08:27:08 -0700
* First post - please advise me if this should be posted to some other group *
Hi folks,
I work at a small government agency. We have contractors developing a VB.NET
app to capture chemicals and their concentrations, as found at hazardous
waste sites. Staff will be entering the info once the app is develop ...
|
Gridview Header Row Child Control
Thu, 05 Jun 2008 06:23:20 -0700
try
DropDownList ddl1 = (DropDownList)GridView1.HeaderRow.FindControl("ddl");
Regards
Mahir ...
|
|
|
Viewstate
Wed, 4 Jun 2008 10:17:13 +0200
Hi,
I created a verry fine site with ASP.net.
But know that it is finished it seems to use a large amount of kb (about 1
100 000kb) on the web.
This all because of the viewstate.
I work with a gridview (50 lines) and in this gridview i use an dropdownlist
with 100 lines.
example:
<input type="hidden" ...
|
How to anchor TreeView Control in Web Browser
Mon, 2 Jun 2008 17:27:00 -0700
I've added a treeview control to a web application. It works fine except
that the entire control moves with the page when the page is vertically
scrolled. I've looked on all the properties lists and can't find anything
that will correct this. Does anyone know what the method/property is to
control this be ...
|
Interaction command and functions (tutorial)
Sun, 1 Jun 2008 03:58:19 -0700 (PDT)
Reason of this project:
The Microsoft.VisualBasic.Interaction class exposes many useful
commands and methods that were available in Visual Basic like
AppActivate, Beep, Callbyname...
This tutorial shows how to work with some of them.
Project details:
1- From VB 6.0 to VB .net 2.0
2- Useful interaction command ...
|