| Thread | Last Post | Replies |
|
| ASP.Net website structure - TableAdapters and a Class Library | 13 Sep 2006 14:37 GMT | 3 |
First of all let me apologise for this is a somewhat general question to which I would be interested in any opinions. As far as I can see when I create a web application the recommended location for the database is the app_data folder. The recommended location for code
|
| SQLDataSource Errors on client computer | 13 Sep 2006 14:35 GMT | 1 |
Problem is when a client experiences a sql error on an update command they get a blank popup (on localhost you see the sql error). I would like to show them the error in that popup- rather then handling it another way. Also- can you disable the popups all-together? I would
|
| Datagrid - HyperlinkColumn and variables | 13 Sep 2006 14:29 GMT | 3 |
Hey all, I need to add a hyperlinkcolumn to a datagrid, but the path (DataNavigateUrlFormatString) is dynamic, since the page lists files in directories. The folder name to list is stored in a variable (strPath). The code that I tried is: DataNavigateUrlFormatString='<%#strPath
|
| returning images from a database as part of a page | 13 Sep 2006 14:06 GMT | 3 |
Hi; I have to store final reports for later viewing. If the reports are html and have images I also have to have a way to return the images too. What is the best way to do this? I was thinking that I store each image in
|
| return keys being clicked | 13 Sep 2006 14:03 GMT | 1 |
I have a createuserwizard control on my web form. When the user registration fields are filled out correctly, and the user then presses the return key instead of clicking the 'create user' button, the browser seems to default to the first asp control on the web page instead of ...
|
| Strnge characters causing compilation error | 13 Sep 2006 13:13 GMT | 1 |
i am hoping that someone may be able to help me... i have been writing vb.net pages using visual web developer. they all work fine locally however when i upload to the server i get the following error: Compiler Error Message: BC30037: Character is not valid.
|
| How can I get a bitmap into a WebControl? | 13 Sep 2006 12:44 GMT | 6 |
I have developed a standard .NET control which displays medical images and works fine in applications, but increasingly, my customers are wishing to use it in an ASP.NET environment, so I am looking to make a WebControl based equivalent. [If I'm missing something important, and ...
|
| Rebuilding and deploying DLL everytime I change a single aspx page? | 13 Sep 2006 12:06 GMT | 2 |
I am working with an asp.net 1.1 web application. Do I have to rebuild the whole application and deploy the compiled DLL to my production server everytime I modify a single aspx page? Is there a way to not re-compile (or rebuild) the whole application
|
| InvalidOperationException: There is already an open DataReader a.s | 13 Sep 2006 11:54 GMT | 2 |
I keep getting the following error message: InvalidOperationException: There is already an open DataReader associated with this Connection which must be closed first. I have read up about it and realise that you can only have one DataReader
|
| newbie problem: updating an access db | 13 Sep 2006 11:10 GMT | 2 |
I have encountered a really weird problem -- probably it is obvious to someone but not to me. I hoep someone can give me a clue. I am implementing some code straight out of the book "ASP.NET 2.0 for Dummies". I just copied the code onto an IIS server with the 2.0 .NET
|
| Get GridView's datasource after Post Back | 13 Sep 2006 10:58 GMT | 2 |
I have a GridView which is bound to a standard DataSet on Page_Load. E.g Grid.DataSource = dataSet; Grid.DataBind();
|
| aspMemeberShip db help | 13 Sep 2006 10:27 GMT | 3 |
I'm trying to create user tables in my own database to use on my web site. I was able to create all of tehe aspnet_[TblName] in my database but when I run the admin web site and try to connect using the AspNetSqlRoleProvider and AspNetSqlMembershipProvider I get the following ...
|
| windows controls on asp.net pages | 13 Sep 2006 09:57 GMT | 3 |
is it possible to put a windows control on an asp.net page? I need a windows listbox on an asp.net page to store objects in it. the listbox control of asp.net can't store objects (only strings). thank you very much
|
| input == null ? "" : input | 13 Sep 2006 09:37 GMT | 2 |
I've bought the book "ASP.NET 2.0 website programming, Problem, Design, Solution" and some of its code examples is this code: protected static string ConvertNullToEmptyString(string input) {
|
| SqlCacheDependency and ObjectDataSource | 13 Sep 2006 08:53 GMT | 10 |
I've been trying out SqlCacheDependency using the ObjectDataSource and SQL Server 2005. It all works quite well with the minimum of configuration, e.g. <asp:ObjectDataSource ID="odsAccounts" runat="server" ... EnableCaching="true" SqlCacheDependency="CommandNotification">
|