DetailsView and DropdownList binding
(1 messages)
Date: Mon, 13 Aug 2007 15:31:50 -0500
Can some body help me. Look at at the code bellow
<InsertItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("item_id") %>'
Visible="False"></asp:TextBox>
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="item_retreive"
DataTextField="item_id" ...
|
More questions on web.config
(2 messages)
Date: Mon, 13 Aug 2007 13:32:30 -0600
In reading web.config and machine configs, what is the difference between
the ConfigurationManager and the WebConfigurationManager, and when would you
use one over the other. They both appear to be able to get values and ...
|
how to reach linkbutton programmatically?
(2 messages)
Date: Mon, 13 Aug 2007 20:44:32 +0200
Hi,
i try to reach in code-behind a linkbutton embedded into an ItemTemplate
element of a gridview.
But i'm stuck ....
<Columns>
<asp:TemplateField><ItemTemplate>
<asp:LinkButton ID="lb1" runat="server" OnClientClick="return ...
|
questions about compiling
(2 messages)
Date: Mon, 13 Aug 2007 20:32:01 +0200
Hi,
1) i read that the whole application is compiled at the first request of a
page.
Does 'at first request' mean for ever, or there are situations where the
compilation occurs again?
The common sense tells me: when ...
|
read scheduled tasks
(4 messages)
Date: Mon, 13 Aug 2007 14:23:52 -0400
Here is what I want to do. Currently I have to log into 30 servers every morning and see if all the jobs under 'scheduled tasks' ran. Is there a way from .NET to read that directory for the selected server?
So I want a web page ...
|
System.Drawing & Tiff images
(4 messages)
Date: Mon, 13 Aug 2007 10:50:26 -0700
Hello everyone,
I'm hoping someone here can pose an alternative that might work better
than what I have created so far. I have a web site that needs to deal with
Multi-Page TIFF images. Primarily they need to be split ...
|
read parameters through StackFrame
(1 messages)
Date: Mon, 13 Aug 2007 10:28:48 -0700
I'm trying to figure out a way to read parameter values from a prior
function call in the StackFrame. I know reflection won't let me do this, it
wasn't designed to do anything but report on static data, but is there
another ...
|
Mirrored state servers
(3 messages)
Date: Mon, 13 Aug 2007 09:43:20 -0700
Has anyone here had experience using technologies such as StateMirror
(www.statemirror.com) as an alternative to managing state on a per server
basis (thus requiring sticky-sessions in a web farm) or external state
server ...
|
FormView.ChangeMode and DataBind
(6 messages)
Date: Mon, 13 Aug 2007 17:41:44 +0100
Hi
I have a FormView control within a UserControl. After I DataBind I need to
change the CurrentMode depending on a value from the ObjectDataSource Select
method. When I do this the FormView DataBinds again. Also in the ...
|
Why Can't I Edit My GridView?
(4 messages)
Date: Mon, 13 Aug 2007 09:42:21 -0700
asp.net 2.0
VS2005
C#
In my web app I added a gridview and then manually configured
boundcolumns, for an in-session dataset to act as a datasource. Then I
added an Edit commandfield. When I run the page, in each row in ...
|
|
Best Practices for handling sensitve data in the UI
(6 messages)
Date: Mon, 13 Aug 2007 09:37:22 -0700
Here is the scenario. We will be writing a web application that will need to
sometimes properly handle sensitive data (salary, ssn, profit, etc.) using
roles. This data will be restricted at a macro level (for example, no ...
|
remove space in front of string
(6 messages)
Date: Mon, 13 Aug 2007 12:06:57 -0400
I'm getting string returned from my Database with a space in front of it, it sometimes it looks like this
8
9
10
1
and so one, how can I remove the white space in front of the numbers? Its actually causing an error on ...
|
Padding is invalid and cannot be removed.
(3 messages)
Date: Mon, 13 Aug 2007 12:03:03 -0400
Why does this happen? How to fix it?
Once in a while I get error in ~/ScriptResource.axd?d=...
System.Reflection.TargetInvocationException: Exception has been thrown by
the target of an invocation. --->
System.Security ...
|
global.asax in ASP.NET 2.0 ???
(2 messages)
Date: Mon, 13 Aug 2007 08:51:52 -0700
Hi,
How do you use a global application class as in ASP.NET 1.0 ?
I try to use the following Global-class but it doesn't work at all:
In Global.asax:
<%@ Application Language="C#" CodeBehind="Global.asax.cs"
Inherits="Global" ...
|
Web Parts - Incremental Display?
(4 messages)
Date: Mon, 13 Aug 2007 07:50:21 -0700
On our local intranet site it has been suggested to have customizable
content on the start page. Most of the content already exists as user
controls, so I'm all set there, the problem is now the loading times.
Many of the ...
|
regarding the apperance of dropdownlist
(4 messages)
Date: Mon, 13 Aug 2007 14:13:56 -0000
hi to everyone,
just help me out to do this.
On my page i have a dropdownlist control,which contain 80 items.
when i select the dropdownlist.i am able to veiw 35 items of the list
at single look.
which gives a odd apperance ...
|
how to restrict the appearance of dropdown list
(3 messages)
Date: Mon, 13 Aug 2007 13:59:45 -0000
In my dropdown list there are 70 items. when I select the dropdownlist
I am able to view 35 items in a single view. But I want to restrict
the no.of items to 10 when I select dropdownlist.
Please help me out
...
|
Send Email
(4 messages)
Date: Mon, 13 Aug 2007 06:40:03 -0700
Hi Guys,
I'm using this code to send an email with attachment but it's not working !!
So, what I'm missing!!? knowing that both From & To email addresses are
correct?
MailMessage msgMail = new MailMessage();
msgMail ...
|
How to Disable DataGrid ?
(1 messages)
Date: Mon, 13 Aug 2007 06:36:33 -0700
Hey all,
How do I disable a DataGrid ?
This works under IE, but not FireFox:
myDataGrid.Enabled = false;
I have a DataGrid with a template column and imbedded radiobuttons.
When the user clicks a checkbox ...
|
determine if textbox is cleared
(7 messages)
Date: Mon, 13 Aug 2007 09:02:56 -0400
I have a textbox were users can enter data, then they can delete it all and enter in new data again and click submit. Is there a way to determine if the user deleted the text they entered in? I'm storing the data in a Varailble ...
|