|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP.NET web controlsmicrosoft.public.dotnet.framework.aspnet.webcontrols
poifull -
14 May 2005 4:09 PM - 5 messages
Hi everyone, I would like to develop a header and HTML menu system for most of the web pages on my web site. What is the best solution for this scenerio? (HTML Control, Server Control...) Thanks for your response ...
abcd -
13 May 2005 11:43 PM - 3 messages
I want to add to dropdown list the first entry as a hard coded entry then after that I want to add the entries thru Data reader. How can I do this...when I add listitem and then datasource = dataReader then my hard ...
Nathan Sokalski -
13 May 2005 9:48 PM - 7 messages
I am trying to dynamically add controls to my page, but am having trouble with controls such as buttons. I have been able to add simple controls such as Label controls, because they can be placed anywhere. I have managed to ...
Paul -
13 May 2005 7:24 PM - 3 messages
I declare a UserControl called header and in that header I declare a <asp:label id=name> control. I reference this user control at the top of my HTML page. In my Page_load subroutine, I try to programatically set that "name" equal ...
Martin -
13 May 2005 7:17 PM - 3 messages
I am looking for a nice webcontrol for displaying menus: - good looking - userroles - vertical and horzontical - fast Which one is the best? Martin ...
Nathan Truhan -
13 May 2005 3:06 PM - 2 messages
All, I am trying to output data in two columns, from a datatable. However, I don't necessarily want the cells to be the same size. What I have is the Course Catalog for our university, each course description is not the same size, but I need it to diplay in two columns to ...
Patrice -
13 May 2005 2:37 PM - 4 messages
I would like to create radiobuttons in a repeater. Unfortunately as the repeater will make each radiobutton having a distinct name, they are not considered as being part of the same group. I also having other columns int the repeater (ie. I'm likely unable to use a ...
abcd -
12 May 2005 6:39 PM - 3 messages
I am using DropdownList control and it is popued up by my datareader How can I sort the items...neither DropDownlist non data reader has sort method lstTitleList.DataSource = myReader; lstTitleList.DataTextField = "Title"; lstTitleList.DataValueField = "Value"; lstTitleList.DataBind(); thanks ...
Amelyan -
12 May 2005 6:38 PM - 3 messages
How can I get state of dynamically generated controls (RadioButton, CheckBox, TextBox.Text) on post back when I click submit button? The only way I know is by traversing Response.Form enumberator; Response.Form.GetEnumerator(), etc. However, I am not sure if that is the proper way. ...
Tim Greenwood -
12 May 2005 4:26 PM - 6 messages
I am using the calendar control provided for ASP.NET. I am adding a checkbox during the DayRender event as follows: System.Web.UI.WebControls.CheckBox cb = new System.Web.UI.WebControls.CheckBox(); cb = new System.Web.UI.WebControls.CheckBox(); ...
ENathan -
12 May 2005 4:15 PM - 2 messages
We generate pages dynamically. Our pages are constructed with web controls in a "flow layout" manner facilitated by heavy use of the literal control. We would like to change that to a "grid layout" manner. Is this possible? We all know that web controls don't support the top and left properties, so are ...
Qwert -
12 May 2005 10:03 AM - 4 messages
Hello, I have a Webcontrol ( Inherits System.Web.UI.WebControls.WebControl, Visual Basic ). In this control I create and save a picture: Dim objImgResult As Image .... objImgResult.Save(strFilename) It works fine, but when I don't specify the full path in 'strFilename', the ...
Machi -
12 May 2005 3:51 AM - 2 messages
I am very new to ASP.NET 2.0. I tried to use GridView control and its built-in SqlDataSource object. Where there is data for a particular table which i bind my GridView to, the GridView can show successfully. However, ...
silverfox_1188 -
11 May 2005 11:08 PM - 2 messages
Hi , I've been stuck with a Datalist layout question I need help on. I would appreciate if someone can give some insight. I'm trying to Display this in a DataList. Game 1 2 ...
abcd -
11 May 2005 11:06 PM - 2 messages
On Server side code I am programatically selecting something usinng "lstBox.SelectedValue = some value". Now I want to fire selection change event when I set/select some value How can I fire the selection change event from the server side code ...
Bill -
11 May 2005 8:00 PM - 3 messages
I am trying to programatically alter the style of x column headings on a datagrid. can someone point me in the direction of anything that could help me determine how this is done? I have: - retreived my data - processed my data ...
Harry Keck -
11 May 2005 6:56 PM - 3 messages
I want to set up my UI to display a titled box around a group of controls, like an html Fieldset with a Legend does, but I would like to do it entirely with a ASP.Net controls. Is there a way to do this? I can put a panel ...
jack-b -
10 May 2005 11:07 PM - 4 messages
Hi, I'm wanting to load a html file into a panel (?) control because I want to keep my page header on the aspx page. First, is this the right approach to take? Second, how do I accomplish this? Cheers, ...
Wayne Wengert -
10 May 2005 9:40 PM - 7 messages
I need a dropdownlist that supports autocomplete. I have been googling and I found a couple that look promising (e.g. [link]) but frankly, I don't know what to do with that sample code? (I thought custom controls came as ...
KevinRug -
10 May 2005 5:02 PM - 5 messages
I believe I had previously read somewhere that visual studio 05 had a tab control. I have installed it but I am unable to find this. Can someone point me to it, or invalidate my belief that it exists. thanks ...
mugurel -
10 May 2005 3:43 PM - 5 messages
Trying to implement an composite control, I OverRide CreateChildControls(), where I add my controls, dinamicaly. I try to ad an System.Web.UI.WebControls.LinkButton Control, and I have the following , error : Control '_ctl0' of type 'LinkButton' must be placed inside a form tag with ...
Mike D -
10 May 2005 3:14 PM - 2 messages
I want to write an app that can connect to a client side comm port. This port will be connected to a balance, I will need to send commands to and receive data from the balance. I would like this portion of the app to be ran in IE because this is part of ...
Paul -
10 May 2005 3:11 PM - 4 messages
Sorry for a very newbie question but... I make a database call to get a label called X. I then try the same label tag twice on the same page such as: <asp:label id="X" runat="server" /> ...
lisa -
10 May 2005 1:56 PM - 8 messages
I have a control which contains a collection of another control. The members of the collection can contain child controls themselves, but these aren't coded. They are merely added between the start and end tags of the child controls in the HTML view. ...
Jay -
10 May 2005 11:44 AM - 2 messages
I'm wondering if anyone has even encountered a control or other scripting that will automatically rotate the rows of a datagrid... I am in the process of building an asp.net application that will display statistics on a large ...
gary.smith -
10 May 2005 5:18 AM - 3 messages
Hello, I am building an table out of dynamic data for the purposes of editing rows. The scope of the project didn't allow for an elegant way of doing this with forms. Basically I add a control a cell to a row to the table. That control ...
dl -
10 May 2005 3:32 AM - 5 messages
Hi Any idea what's happening, please?! TIA, details..... I have a formA.aspx page and a corresponding class file formA.cs compiled into a library. User is to fill out some information and click a submit button to trigger a click event. Here is what I have in formA.cs ...
Angie -
9 May 2005 6:28 PM - 15 messages
I have a datalist that displays images from a folder. It works on my local host but I just get the boxed red x online. Right below the image is the file name and that is displaying correctly both locally and ...
STech -
9 May 2005 4:51 PM - 6 messages
I would like to add *designtime* and *runtime* checks to two properties in a custom webcontrol 1) I would like to check the value of the property (int) and make sure it is in a certain range. 2) I would like to compare two properties on the control anytime one ...
JohnFol -
9 May 2005 10:51 AM - 5 messages
I have an ASP.Net page that creates an instance of an OWC chart object. Once created I use the .ExportPicture method to give me the image. I then use the file as the ImageURL of an Image control. So far, all this works in Dev. ...
|
|||||||||||||||||||||||