Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > asp.net > january 2004 > threads for saturday january 3

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Why the source database not updated?
Posted by CM at 1/3/2004 10:17:19 PM
Hi there: Following is the code, after change the Dataset, accepte the change = made to the dataset and excute the update of Adapter, nothing happened = to the database source database, what's wrong? Thanks! CM ------------------------------------------------- Private Sub UpdateApartment...more >>

Mail via ASP
Posted by Bram at 1/3/2004 10:16:04 PM
Ik ben nog niet zo op de hoogte op het gebied van ASP, maar laatst heb ik geprobeerd een script te schrijven om een e-mail vanaf een asp-pagina te verzenden. Dit is me echten niet gelukt. Het enige dat er op m'n pagina verscheen was: CDO.Message.1 error '80040220' The "SendUsing" configuratio...more >>

Building a web application with OO
Posted by Nick at 1/3/2004 9:05:14 PM
I am doing some research into building web applications using Object Oriented techniques. I have found the excellent patterns section on the MSDN site, but other than that I cannot find any good, concrete examples. I know Microsoft are really pushing OO with the .NET Framework and C#, but for ...more >>

Compact Jet Database
Posted by Alphonse Giambrone at 1/3/2004 7:48:20 PM
How can a Jet (Access) database be compacted from an asp.net web application? -- Alphonse Giambrone Email: a-giam at customdatasolutions dot us ...more >>

CssClass not working in code behind
Posted by Max at 1/3/2004 7:20:48 PM
When I do this in the code behind, the class in the <TD> does not change or render: myTableCell.CssClass = "myClass" What tells me my coding is right: tcMenu3.Visible = False Result: <TD> properly disappears <asp:TableCell ID="myTable" CssClass="myClass"> Result: <TD class="myClass"> cl...more >>

Post to another url
Posted by Matt at 1/3/2004 6:28:37 PM
Hi all, Not very sure about this. I have one button (not a submit button) will "post" partial page(form) info to another url(the user will also redirect to this url :-). I dont' want to change the webpage interface, so how can I POST partial form info? by using a tmp url??? TIA -mat...more >>

Page_Load event
Posted by Roger at 1/3/2004 5:56:13 PM
Maybe someone can help me out here. I have a web form that enables viewstate. When i leave the form to another form in the application and then return to it via a hyperlink, the Page_Load event is not called. Anyone know why this might happen and how to force Page_Load? Thanks Roger ...more >>

DllNotFoundException
Posted by Aaron Stubbendieck at 1/3/2004 5:06:06 PM
Hello, I have an asp.net script that references system.drawing and I am receiving the following the error when using system.drawing.bitmap: Exception Details: System.DllNotFoundException: Unable to load DLL (gdiplus.dll). [DllNotFoundException: Unable to load DLL (gdiplus.dll).] System.Dr...more >>



TemplateColumn with multiple parameters
Posted by Maziar Aflatoun at 1/3/2004 5:01:42 PM
Hi everyone, I have the following TemplateColumn in a datagrid where I process my data in another function and return it's result. <asp:TemplateColumn HeaderText="File" SortExpression="FileName"> <ItemTemplate> <%# CreateFileHyperlink(DataBinder.Eval(Container.DataItem, "...more >>

dynamically change table with early binding?
Posted by Max at 1/3/2004 4:08:06 PM
For some reason Style is read-only, so this wont work? I was hoping I could change the style: <asp:TableCell style="background-image:url(images/header_bottombg.gif)" Wrap="false" HorizontalAlign="Left" ID="tcMenu1"> tblMenuRow.Cells.Item(1).Style = "background-image:url(images/header_bottom...more >>

Architecting for easy Deployment
Posted by Thomas at 1/3/2004 4:03:37 PM
Hi, I there anybody here that are designing applications with asp.net without html in aspx files? The problem is that aspx files is a dependency, and I would like to avoid having that dependency for easy deployment. Ideally - I would like a single binary or two to contain all resources - gr...more >>

debugging
Posted by TJS at 1/3/2004 1:53:51 PM
where to get a copy of DbgClr.exe for debugging asp.net pages, as referenced here http://samples.gotdotnet.com/quickstart/aspplus/doc/debugcomsdk.aspx I have the sdk but search found no such file . ...more >>

UserControl, button click and Page_Load?
Posted by Olav Tollefsen at 1/3/2004 1:19:08 PM
I have a rather fundamental ASP.NET question. On my page I have a search text box for user input, a button (which invokes a event handler on the page) and a user control to display the results. The button event handler will get a data set from a database and then calls a method in the user con...more >>

Configuration Manager
Posted by Hadi Hariri at 1/3/2004 12:50:40 PM
Am I correct in assuming that the "Set As Start Page" option for debugging ASP applications is set in the Configuration Manager? If this is the case, how can I change this so that when I deploy a application (SOURCE) to another development mchine, it keeps this option? TIA...more >>

ASP.NET and UTF-8 problem
Posted by Andrei at 1/3/2004 11:19:40 AM
Hi, I have a simple html page with russian text and the encoding is UTF-8. I have changed the extension of the page to aspx to add some code in the page and i can't see the russian text. Also I've tried to add the directive <%@ CODEPAGE="65001" %> but there is no changes. How can I solve this pr...more >>

Simple Form Authentication
Posted by Tuan Nguyen at 1/3/2004 11:12:54 AM
Hello all, I have a website about 10 pages. One of them is login page. I am using Simple Form Authentication with database to allow user login and logout. My problem is whenever my website is loaded, it goes directly to the login page and ask for users to login. Otherwise users cannot acces...more >>

How to implement multiple login forms?
Posted by James X. Li at 1/3/2004 11:06:27 AM
Is there a way to implement multiple login forms for ASP.NET applications? With our application we want to implement simple login form for normal resources (downloadable files), but more rigorous login forms for tasks like administration and configuration. The current ASP.NET seems only to al...more >>

Itemcommand and Datalist problem
Posted by Kenneth at 1/3/2004 9:13:17 AM
Hi there, The OnItemCommand in my datalist is acting very weirdly, the first time the page is loaded(or anything on the datalist is clicked for the first time) its firing only once, but after that its firing twice. I have no idea why, Any help would be really appreciated. Thanks in advance ...more >>

DataGrid with scrollbars
Posted by mg at 1/3/2004 6:44:04 AM
How can I add scrollbars to a DataGrid in a C# WebForm?...more >>

Disable TextBox from popup window
Posted by mg at 1/3/2004 5:33:03 AM
I want to disable a TextBox in the WebForm that opens a popup Webform ... from the popup WebForm. The following javascript code doesn't work: window.opener.document.getElementById("TextBox1").Enabled = false; What am I doing wrong? Could you provide a solution?...more >>

What is the difference between LiteralControl and Literal ?
Posted by Andreas Klemt at 1/3/2004 3:16:06 AM
Hello, what is the main difference between Literal and LiteralControl? Thanks in advance Andreas ...more >>

WebSetUp Error!
Posted by techpond2003 NO[at]SPAM yahoo-dot-com.no-spam.invalid at 1/3/2004 2:37:45 AM
When i try to create a websetup project i am getting the following error. This setup does not contain the .NET Framework which must be installed on the target machine by running dotnetfx.exe before this setup will install. You can find dotnetfx.exe on the Visual Studio .NET Windows Component...more >>

Relative path in Web.Config
Posted by Prateek at 1/3/2004 1:07:31 AM
Hi, I am using appSettings in Web.Config to store my connection string. = However, I am not able to provide a relative path to the Access = database. How can I do that? TIA Prateek...more >>


DevelopmentNow Blog