| Thread | Last Post | Replies |
|
| DataGridViewRow Alternate Text | 12 Jul 2007 22:32 GMT | 6 |
I want to add alternate text like on an html image to a DataGridViewRow. Is it possible?
|
| Pass VB Variable to ASP Control Property | 12 Jul 2007 21:56 GMT | 3 |
this must be easy, but I can't get it right. How do I pass the VBvariable created at page_load to the property of a web control: ....
|
| Simple generic list as a datasource for a grid | 12 Jul 2007 21:34 GMT | 3 |
I'm getting data in a generic list class, which I'm not going to change. I would like to use it as a datasource for a datagrid or a gridview, but it doesn't implement IEnumerable.
|
| File.Exists and UNC Shares | 12 Jul 2007 21:24 GMT | 1 |
I am trying to use the File.Exists method on image files that are located in a virtual directory on a UNC share from IIS6. The UNC share is located on a Windows 2000 Server machine. I can view the files just file over HTTP on the IIS server. However, when I
|
| Check/uncheck checkboxes from javascript | 12 Jul 2007 20:59 GMT | 1 |
I am writing a WebControl that uses the status of a master check box to determine if other dependent check boxes need to be checked/ unchecked. What is the best way to do it? I am not much of a web programmer so apologies for the basic question.
|
| Object Data Source Computed Column | 12 Jul 2007 20:52 GMT | 2 |
I have a list box that is bound to an object data source. I added a column, say ColumnC, to my typed data set and for it's expression I entered ColumnA + ': ' + ColumnB When I preview the data in the designer I get exactly what I want.
|
| VS 2005 with VSS 6.0 | 12 Jul 2007 20:45 GMT | 2 |
I'm working on a web application with several other developers and we're using Visual Source Safe 6.0 and VS 2005 IDE, and I noticed that more then one person can check out and modify a file even though it states its checked out by someone else. Back when I was using VS 2003, and ...
|
| How to display RTF text stored in database as IMAGE to a asp.net page | 12 Jul 2007 20:25 GMT | 2 |
I have been able to take rft text stored in a SQL database and display it in a RichTextBox control on a windows form. Is there any way to do something similar in an ASP.Net page. I do not see any controls that will allow me to do this. We also have access
|
| ASP.NET code not wortking with IIS | 12 Jul 2007 19:51 GMT | 1 |
Have an IIS authentication issue and need some help. I won't get into specific detail why we do it this way but we HAVE to do it this way. We have a login page in an asp.net web application that allows the user to choose to use windows integrated authentication or an application ...
|
| reload of page required after formsAuthentication signout / logout? | 12 Jul 2007 19:18 GMT | 1 |
I have asp.net menu with a logout item. I handle the the menu click as follows: Protected Sub Menu_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu.MenuItemClick
|
| POSTing a form programatically | 12 Jul 2007 18:38 GMT | 2 |
I am trying to programatically POST an ASP form, to allow me to log on to a site programatically. <form name="aspnetForm" method="post" action="Default.aspx" id="aspnetForm">
|
| Debugging asp.net is grayed | 12 Jul 2007 18:27 GMT | 1 |
I am using Visual Studio 2002. Suddenly, one of my web projects does not stops on breakpoints on debug. I noticed that when going to project properties under debugging, the "Debugging asp.net" check box is grayed.
|
| GridView and ObjectDataSource Sorting | 12 Jul 2007 18:26 GMT | 2 |
I have an ObjectDataSource bind to a GridView and Sorting is enabled. I have no problem with sorting, I implemented IComparer but I don't want to fetch my data each time from my database. I'm new with web development so I don't know if I do it right.
|
| how to truncate automatically? | 12 Jul 2007 18:20 GMT | 6 |
When the length of a textbox in a form exceeds the length of the corresponding field, i get an error message ("string or binary data will be truncated .... ") and the aplication stops. I know i can check the lenght in code-behind, but is there no way to let
|
| Accessing Page Object from class | 12 Jul 2007 18:07 GMT | 2 |
I need to be able to call the System.Web.UI.Page object inside a custom class without actually passing the Page object as an argument. Is there an alternate way to access the page object from within a class? Something like the HttpContext.Current object?
|