all groups > asp.net > july 2007 > threads for saturday july 28
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Tab Order in Repeater ir vertical, should be horizontal
Posted by Bill Nicholson at 7/28/2007 7:53:06 PM
I have a repeater control control that displays a set of records. When
I tab through the fields, the active field moves downward through the
current column. When it gets to the last record it moves to the next
column. How can I use the tab key to move through the row and then
down to the next ro... more >>
web server setup
Posted by Fred at 7/28/2007 7:25:10 PM
I have a server that will be running as a web server and a database server?
To get the best performance is it better to install the database and web
server on seperate physical hard drives? or it doesn't matter?
I have a total of 8 harddrives, what RAID setup should i choose?
Thanks,
Fred
... more >>
Select Master Page Option is missing
Posted by Lit at 7/28/2007 6:22:38 PM
Hello,
I created a web app in VS.NET 2005
Created a Master page
I tried to add a new Item to my project and can not select a Master page.
in the dialog I get The option to say I want to select a master page it is
missing.
Any Ideas,
Thank you,
Lit
... more >>
how to populate programmatically a dropdownlist in a template?
Posted by Chris at 7/28/2007 5:04:22 PM
Hi,
i defined a dropdownlist in the EditTemplate of a gridview like this:
<asp:TemplateField HeaderText="min" SortExpression="min">
<EditItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" SelectedValue='<%#
Bind("min") %>' >
</asp:DropDownList>
</EditItemTemplate>
<ItemTemp... more >>
how to get the value of a field in a detailsview?
Posted by Chris at 7/28/2007 5:02:12 PM
I need the value of a field of a detailsview in DataBound event.
i can find the fieldname with this:
Dim a As DataControlField
a = DetailsView1.Fields(0)
But how to get the value of that field?
i tried a lot of things without succes:
Protected Sub DetailsView1_DataBound(ByVal sender As Objec... more >>
AJAX Page Methods Broken in IIS, Work with Built-in Web Server
Posted by brice at 7/28/2007 10:42:17 AM
Hi,
We are using static public methods decorated with 'WebMethod' as our
AJAX implementation. We then use the client-side Sys.Net.PageMethod
approach to invoke the page method.
In the same application, this works fine with the built in web server,
but fails with IIS. In IIS we get a 404 err... more >>
Help with Gridview and templatefield column
Posted by Rafia Tapia at 7/28/2007 10:10:08 AM
Hi
I have a gridview control that is showing 6 column. The first column is a
buttonfield, then there are three boundfield and two template field control.
I am creating all these column in the page load event and initializing the
itemtemplate of the template field in rowcreated event. The prob... more >>
reorder columns in a gridview
Posted by eagle at 7/28/2007 7:34:57 AM
How can I reorder the columns in a gridview. The gridview is autogenerated,
and in a windows application I can use gv.columns("Client').DisplayIndex=0
but in an asp page I get an errors that says DisplayIndex is not a member.
How can I do this? Thanks for your help.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Missing header text and values for templatecolumn
Posted by Eugene at 7/28/2007 3:52:02 AM
Hi,
I use a datagrid with asp:templatecolumn, and handles the datagrid's
ItemDataBound event, whereby I assign a value to this asp:templatecolumn text.
e.Item.Cells[1].Text = e.Item.Cells[2].Text + e.Item.Cells[3].Text;
/* column index 2 and 3 are boundcolumn */
The issue that I have is ... more >>
Viewstate and preserving data on postbacks
Posted by Joe Abou Jaoude at 7/28/2007 3:45:59 AM
hi,
I just want simply to preserve some data in my usercontrol on postbacks.
so I added this property in my UserControl
Protected Property MyProperty() As String
Get
If Not ViewState("xxx") Is Nothing Then
Return ViewState("xxx")
Else
... more >>
UpdatePanels refresh other UpdatePanels when UpdateMode is 'Condit
Posted by rival NO[at]SPAM newsgroups.nospam at 7/28/2007 1:46:01 AM
Morning,
I've still got an issue with an AJAX enabled site.
I've a master page with two ContentPlaceholders. I've then got a default
aspx page which contains several user controls I've written. Each user
control contains an UpdatePanel. Each UpdatePanel has
UpdateMode='Conditional' se... more >>
|