| Thread | Last Post | Replies |
|
| TreeView using codebehind form | 24 Mar 2004 16:43 GMT | 1 |
Has anyone managed to get the AdvancedWebControls Treeview working using a codebehind form The control works fine using the example aspx page but when I create a codebehind form the treeview no longer renders on screen (even with the code still in the aspx page). To get it to work ...
|
| DataGrid Scroll Behavior | 24 Mar 2004 12:32 GMT | 3 |
How do I make my data grid "stay put". I have a read-only data grid where I return back a DataTable that may be sourced from a different physical result set at each invocation...thus I don't know what the columns are going to be. However, since the grid will show the column names ...
|
| Executing external process from ASP.NET Web application | 24 Mar 2004 12:16 GMT | 1 |
I have tried working on this based on the article (http://support.microsoft.com/?kbid=306158) as proposed by Martin, still doesnt seem to like it. 1. Have used <identity impersonate="true" />
|
| Load an ascx in code error | 24 Mar 2004 04:02 GMT | 3 |
I've an aspx page named MyPage.aspx with a table with 1 row and 3 cols: <TABLE style="Z-INDEX: 101; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: 0px" cellSpacing="0" cols="3" cellPadding="3" width="938" align="left" border="0">
|
| Customizing Datalist dynamically | 23 Mar 2004 19:43 GMT | 2 |
I have a datalist on a webpage, which I like to customize it based on different data sources. How can I achieve this through code? Can anybody help me with this or point me towards an URL ?
|
| HELP - dynamically create events and getting the value | 23 Mar 2004 17:48 GMT | 7 |
I am dynamically creating controls on my asp.net page and dynamically create an event but don't know how to access which button was pressed (with the ID - see objDelete_Click): '----------------------------------------
|
| Executing command line from ASP.NET | 23 Mar 2004 17:10 GMT | 2 |
I have a requirement in executing a command line from Web Application, it does this in the background and doesnt display the results to the user. But i dont think the Web environment in .NET allows this to happen without some security tweaks. How can i do this? Same code with ...
|
| <asp:ListItem Value="name"><% this.strName %></asp:ListItem> | 23 Mar 2004 16:38 GMT | 3 |
I declared a string strName and strAge which get data from DB. I want to show them in a CheckBoxList's ListItem. How can I do it <asp:CheckBoxList ID="username" CssClass="form" Runat="server" RepeatColumns="2" RepeatDirection="Horizontal"><asp:ListItem Value="name"><% this.strName ...
|
| Type CollectionEditor is not defined (missing from Intellisense too!) | 23 Mar 2004 07:54 GMT | 1 |
Hello, I am completely vexed. I've been trying to build a web control based on a sample in the MSPress book Developing ASP.Net Server Controls and Components. In their example they have a class defined as inheriting
|
| Subclassing a User Control | 23 Mar 2004 02:42 GMT | 1 |
I have a user control that I've created. It's a basic dialog frame made using a table, with a label in the title bar, and an imagebutton for closing the dialog. Nothing fancy. I laid out the control in the HTML window of the PopupDialog.ascx file, and there's an event tied to ...
|
| any page template experts? | 23 Mar 2004 00:07 GMT | 2 |
hello, i want to implement page templates in asp.net and was reading through the following article: http://www.devx.com/dotnet/Article/18011 are there any experts out there that can give any pros/cons to this
|
| NavigateURL can't find Javascript problem | 22 Mar 2004 22:15 GMT | 1 |
I have a treeview control: If I do: myTreeNode.NavigateURL = "javascript:alert('hi');" it works when I click it.
|
| ListBox in ASP.NET | 22 Mar 2004 17:41 GMT | 2 |
I am working on a simple Web Form and have 2 List Boxes and I am trying to move selected items from List Box1 to List Box2, when you click on a move button. I am posting the code that I am using: private void btnSelect_Click(object sender, System.EventArgs e)
|
| Add confirmation to a LinkButton | 22 Mar 2004 15:20 GMT | 7 |
I have a LinkButton that performs a permananet operation, so I want to get confirmation when the user clicks it. How do I add a client side confirmation? I want to run this javascript: return confirm('Are you sure you want to delete all?');
|
| DropDown List Events | 21 Mar 2004 09:58 GMT | 1 |
I added a drop down list to an ASP table in my code behind. Now my selected index change event is not firing. I tried to put autoback = true but still no event fired. I have the drop down list declared Dim withevents ddl as dropdownlist. But still it will not fire the event.
|