|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP.NET web controlsmicrosoft.public.dotnet.framework.aspnet.webcontrols
hyperlink in a ListItem
David Thielen -
18 Nov 2006 8:01 PM - 5 messages
Hi; For the text of a ListItem how do I put a hyperlink in as part of the text? I tried putting it in the text and putting a asp:HyperLink inside it - neither worked. ...
Panel Border Problems
mianiro -
18 Nov 2006 3:39 PM - 2 messages
Anyone ever have issues with the Panel control and its borders? The Borders do not always paint for me. I will have half a side painted while the other is not at all. Is this a bug ? ...
Getting the generated name attribute for use in JavaScript
Nathan Sokalski -
18 Nov 2006 1:16 AM - 4 messages
As most of us probably know, ASP.NET controls do not use an exact copy of a control's ID for the HTML element's name or id attribute. When generating JavaScript as part of a control or event, we need to have a way to reference ...
Missing cell borders in Table control
elect_son -
17 Nov 2006 10:30 PM - 2 messages
Hi, I am using the Table control in ASP.NET to display values from a database. Although I have specified borders for each cell, cells with no data are displaying without borders. At the cell level I have the BorderStyle set to "Solid" and have set a ...
hyperlink on template header
Lucas Hernandez -
17 Nov 2006 5:44 PM - 4 messages
Hi.. I am trying to put a <a > (anchor) on a <asp:TemplateField HeaderText="<a onClik='functionname('parameter')>click</a>"> but it doesn't take the parameter... any idea? ...
gridView Viewstate
Chuck P -
17 Nov 2006 5:06 PM - 2 messages
I was trying to understand why the GridView displays some less than desireable features when ViewState is disabled. If you disable viewstate, you can delete or update the wrong records. [link] I don't understand why when a postback occurs that the GridView re-reads ...
Microsoft ASP.NET 2.0 Treeview not being W3C compliant?
theintrepidfox -
16 Nov 2006 11:08 PM - 5 messages
Dear Group Just wondered as I came accross the following markup rendered ny the Microsoft ASP.NET 2.0 Treeview Control, missing the type attrbute in the script tag. <script> <!-- function TreeView_PopulateNodeDoCallBack(context,param) { ...
Gridview -- changing field content
Jason Wilson -
16 Nov 2006 9:35 PM - 2 messages
I would like to change an image in the 1st field in each row of a gridview based on the content of the other other fields in the row. Can anyone point me in the right direction? I tried the following code as a test: ...
difficulty setting time values in Calendar
Beemer Biker -
15 Nov 2006 11:31 PM - 4 messages
Observation: I am using the dotnet calendar to set a date and time field. I added hours and minutes fields to my popup since there is no time picker available. [link] I see no method to set items ...
GridView with objectdatasource
Chuck P -
15 Nov 2006 11:14 PM - 2 messages
I have a gridview with an objectdatasource which has a timestamp data field byte[] When I do an update my object gets passed backed to my data access layer but the timestamp value is null (the other fields all have the edited values). ...
FormView, with 2 dropdownlists
Milton Snider -
15 Nov 2006 7:47 PM - 8 messages
I am somewhat new to asp.net. I have a form which is always in insert mode and I am trying to let one dropdownlist(dropdownlist1) select a state and then limit the number of cities populating the 2nd ...
<asp:Repeater>, checkbox values and ASP.NET 2.0
deathtospam@gmail.com -
15 Nov 2006 5:56 PM - 9 messages
A few weeks ago, I created a Classic ASP page that connects to a machine with SQL Server installed on it, prompts the user to select a database on that server, then lists all of user-created stored procedures in that database. The user can select any of those stored ...
Retrieving all properties of control how to -asp.net
mpar16 -
15 Nov 2006 5:56 PM - 3 messages
hi, could please help me to retrieve properties of a control, i got a scenario to read all available properties and its current assigned values for different controls in project. i tried with reflector tool but it giving properties of classes. I am not sure how to get property ...
Multiview and Validation
Chuck P -
15 Nov 2006 4:57 PM - 2 messages
I am using a Multiview control and some validators. The multiview is being used in a homegrown tab control Click on a tab it display one of the views. I have a submit button that I would like to validate all of the ...
Object reference not set to an instance of an object.
Kiran More -
15 Nov 2006 1:49 PM - 3 messages
WebControl button = (WebControl)Page.FindControl("btn_Delete"); button.Attributes.Add("onclick", "return confirmDelete (this.form);"); confirmDelete is the method written in Javascript. I am getting following error message as, Object reference not set to an instance of an object. ...
User Control used in Repeater, but no output
Yvonne -
14 Nov 2006 9:30 PM - 3 messages
Hi, I have a collection of objects, this objects contain url information, a link to a picture and a descriptive text). What I want to do is: Displaying this data in a list of 'blocks' where each block is build of ...
Searching for a powerfull calendar addon
WT -
14 Nov 2006 5:11 PM - 5 messages
Hello, Working on a service scheduling problem, I am searching for a good and powerfull i:mplementation of a calendar in asp.net 2. Thanks for all indications. CS ...
get a filename for a bitmap in a skin
David Thielen -
13 Nov 2006 11:21 PM - 3 messages
Hi; I want to get the filename for a bitmap in a skin. I have to get this in my ..cs file because it is for a control that inherits from HyperLinkField and therefore it cannot have properties set in the skin file. ...
GridView EnableSortingAndPagingCallBacks Select command.
MikeS -
13 Nov 2006 9:05 PM - 5 messages
Has anybody got a workaround for addding the equivalent of a select command to a GridView that has EnableSortingAndPagingCallBack enabled so I can get at the selected row? ...
Disable databound dropdownlist if 0 items
Evan M. -
13 Nov 2006 8:39 PM - 3 messages
I'm working on an ASP.NET 2.0 web page right now (using C#), and am trying to figure out how I can conditionally disable a drop down linst on the page if the datasource that it is bound to has no items. ...
List Box : help preventing duplicate items
arkgroup -
13 Nov 2006 8:15 PM - 6 messages
Hi, Is there any way I can prevent adding same value to the list box? Do I have to loop thru list every time I add item? For instance, I can add 1/1/2006 as value and text many times ...
Session sharing between ASP and ASP.NET
princessjewel62 -
13 Nov 2006 6:37 AM - 3 messages
Hi, I would like to ask if there is a possibility that a single session is used in a web application that contains ASP and ASP.NET application together for business applications. If yes, how can it be done? Thank ...
Accessing USER CONTROL which is inside Masterpage through Another USER Control inside normal page.
Kiran More -
13 Nov 2006 6:16 AM - 3 messages
I have created a lable in the InfoMessageBox.ascx control. This control in used in Master Page. One Page is designed by making use of this Master Page. This ASPX is having another user control. This user control has got one buttong which on click makes database call. ...
Use CSS in themes
David Thielen -
12 Nov 2006 7:52 PM - 3 messages
Hi; Is there a way to do most of the formatting for controls in a css file and then just pass the created styles to the control via the skin? There is a CssClass property but the documentation sounds like the control makes that ...
Login HelpPageIconUrl is the help link
David Thielen -
12 Nov 2006 6:46 PM - 3 messages
Hi; How can I set a Login control to have the link to help be from the HelpPageIconUrl and have no HelpPageText? ...
Login control - image button with text over it
David Thielen -
12 Nov 2006 6:45 PM - 14 messages
Hi; How can I set the Login control, LoginButton to be a bitmap button I pass with text I pass over it. I tried the following: LoginButtonType="Image" LoginButtonText="Login" LoginButtonImageUrl="Images/LoginButton.jpg" and got no text. I tried this: ...
StyleSheetTheme not working
David Thielen -
12 Nov 2006 6:43 PM - 3 messages
<pages theme="Windward"> <controls> <add tagPrefix="aspWindward" namespace="net.windward.webcontrols" ...
how to get selectedvalue of radiobuttonlist in Javascript?
Arnold -
12 Nov 2006 12:16 PM - 9 messages
Hi, I need the SelectedValue of a radiobuttonlist in a Javascript variable. The radiobuttonlist is only used in a form for inputting data into a database. Before sending it to the database, i check the inputted values in Javascript. (By the way there is also a dropdownlist in the form, and i have no problem ...
|
|||||||||||||||||||||||