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 > february 2004 > threads for monday february 9

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

Retirieving username during Forms based authentication
Posted by Andre at 2/9/2004 11:51:02 PM
Hi, I'm working on a C# project, where I need to identify the username from each user that logs on. I use Forms authentication, and am able to display the username by using the User.Identity.IsAuthenticated property. But; I need to store the username in some sort of variable, and use it in ...more >>


System.Data.OleDb.OleDbException
Posted by Ashok at 2/9/2004 11:41:06 PM
Hi I having a strange error which has started coming up recently. I have a textbox where one can enter the URL for a link. The textbox is not able to accept long Urls. the error which I get is Exception Details: System.Data.OleDb.OleDbException: The field is too small to accept the amount of da...more >>

ASP.NET Control Full DOM Name
Posted by Arnold at 2/9/2004 11:19:50 PM
Hello All, Please how do I get to know the full dom name for a control at runtime after it is rendered in a page so it can be used in client side javascript? Thank you Arnold ...more >>

hyperlink posts back
Posted by Mark at 2/9/2004 10:32:20 PM
Ok this is very odd. I have a hyperlink server control (not a linkbutton) on my .aspx page. When the navigateurl property is set to a file (blah.aspx) in the same directory as the current page, the page posts back BEFORE redirecting to the next page. If I change the navigateurl property to go...more >>

How to passing parameters in the CommandArgument
Posted by Gilles T. at 2/9/2004 10:23:10 PM
Hi, I need to passing parameters in CommandArgument of the asp:ImageButton. I don't use datagrid or datalist Here is my code: Private Sub ImageButtonCommandHandler( sender As Object, e As CommandEventArgs ) Session("Id") = e.CommandArgument end sub <asp:ImageButton CommandName="edit"...more >>

how can I access serial port ?
Posted by daniele73ps at 2/9/2004 9:10:37 PM
Can I access serial porta trough asp .net ? Where can I find some examples ? Thanks.... ...more >>

codebehind and custom objects
Posted by Karl Hungus at 2/9/2004 8:02:54 PM
Say I have a code behind class, and in that I want to instantiate and call methods on some objects Ive written in other cs files, what do I need to do to make those objects available within the codebehind? thanks in advance ...more >>

How to make a server control have a trial period?
Posted by Showjumper at 2/9/2004 7:42:09 PM
How does one go about making a custom server control have a trial period after which it expires? I have aserver control that i want sell but would like to have a trial periods for it. Along the same lines, how can i create a licensing scheme, i.e site license so that the control can be used on ju...more >>



Where are error messages documented?
Posted by clintonG at 2/9/2004 7:15:27 PM
I'd like to know if there is documentation that explains the context of errors such as '...does not contain a definition...' and so on. -- <%= Clinton Gallagher A/E/C Consulting, Web Design, e-Commerce Software Development Wauwatosa, Milwaukee County, Wisconsin USA ...more >>

IsPostBack
Posted by Mark at 2/9/2004 6:53:42 PM
I have a single page with a HyperLink server control on it. When the page loads the first time, I have code that executes once. When you click on the hyperlink server control to redirect, the page load executes again which is fine, but the IsPostBack evaluates to false. BUT I have code I wan...more >>

User Web Control Load Problem
Posted by Eric at 2/9/2004 6:53:20 PM
I have built a composite user web control that I want to create dynamically. The form will contain a variable number of these controls and as well some of the contents of the user web control itself are dynamically created controls. I create as follows: wcGroupControl oGroupControl = new wcGr...more >>

Responise.Write() seems not to work in codebind.
Posted by krondor NO[at]SPAM dreamwiz.com at 2/9/2004 6:46:03 PM
Dear Sir, I create webform page that all html code is generated in code behind and sended to IE using Response.Write() like this, namespace localhost.XML { public class Encoding : System.Web.UI.Page { private void Page_Load(object sender, System.EventAr...more >>

Fire Javascript method on BUTTON click??!?
Posted by Jack Black at 2/9/2004 5:57:31 PM
OK, I've got a basic webform set up, with several buttons that I want to trigger different things on when they're clicked. For example, when the onClick event is triggered on one, I want a javascript method to fire and open a new window, redirecting to either another page on my site or a page o...more >>

GET original error message with HttpWebResponse
Posted by Jon Maz at 2/9/2004 5:55:32 PM
Hi All, I am using a WebRequest & WebResponse to GET the contents of an aspx page as a string (code below). It's working fine, except that when the aspx page has an error on it, I want to know precisely what the error was (ie I want to get the error message that would be displayed if you we...more >>

Stop VS.Net from reformatting my aspx pages
Posted by Abhishek Srivastava at 2/9/2004 5:54:33 PM
Hello All, I am developing a page which has a complex layout. This layout cannot be made using VS alone, so I have to go into the html view and edit the html myself. The problem is that everytime I save the file, (or add/remove any component to the page) VS.Net reformats and re-edits the...more >>

Saving The quantity of a textbox control between postbacks
Posted by Gary Vidal at 2/9/2004 5:31:50 PM
I have a shopping cart webpage that shows a product and the Quantity they would like to order: When you click the link I want to take the quantity that they entered in the textbox and post that to the next page. But it keeps the original quantity I added to the viewstate. Where can i code this ...more >>

Comment out in ASP.net
Posted by Hai Nguyen at 2/9/2004 5:30:27 PM
I want to comment out a piece of code in my asp.net (there is C# code behind) I can comment out with C# but not with asp.net Please advice Thanks ...more >>

Wem Mail attachments
Posted by Richard Grene at 2/9/2004 5:30:08 PM
I am using webmail with asp.net & vb. I need a method for web users to attach files from their local drives. How can this be done? Thanks, Richard ...more >>

Proper way of destroying unused session objects
Posted by binoysankar NO[at]SPAM yahoo-dot-com.no-spam.invalid at 2/9/2004 5:29:25 PM
Hello, I am carrying some values into a page using Session object. I would like to remove the session values that I used on this page [not to overcrowd session] when the user leaves to another page. But I need these values as long as user is on this page [If user presses page refresh, these S...more >>

Session Timeout
Posted by Florian Zimmermann at 2/9/2004 5:17:00 PM
Hi everyone, we have configured our IIS and the specific website to use 60 mins for session timeout. Additionally we configured the web.config so that timeout in the sessionState section is set to 60 as well. Regardless of this settings, the session gets abandoned after about 30 mins. Are ther...more >>

Windows 2000 Server and ASP.NET
Posted by Wayne Taylor at 2/9/2004 5:00:40 PM
Hello All I have built an ASP.NET web application using VS2003 and v1.1 of the framework. On my development system, Windows XP SP1a, all works well. When I transfer the application to Windows 2000 Server (v1.1 of the framework) the application breaks. I am using "Deploying a Web Solution"...more >>

Web Server Not Running
Posted by Steven M. Britton at 2/9/2004 4:36:05 PM
I am 100% new to this and have had no schooling... I am trying to open the ASP.Net Web Application in Visual Studio .NET and when I do I am getting the error message that states "Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable ...more >>

Composite DataKeyField?
Posted by Ismail Rajput at 2/9/2004 4:34:20 PM
Is there any option we can use Composite DataKeyField in the DataList and DataGrid? ...more >>

page 372 dev web applications book
Posted by Paul at 2/9/2004 4:31:07 PM
Hi I am trying to run a simple windows authentication example in the Microsoft web apps book page 372 and in the page load sub I am getting the errors, name spnAuthenticated not declared, spnUserName not declared, spnAuthenticationType not declared In startup pageload subroutine, I hav Private ...more >>

Session lost when deploy new components
Posted by Bill L at 2/9/2004 4:23:48 PM
Hi guys, Got problem with session when I install new DLL file or replace DLL file in /bin folder, is there anyway I can stop this happened ? I don't run two version of side by side and seems the application has to restart if there is new DLL installed by MS document. I am not sure I understand...more >>

forwarding requests
Posted by Jon Paugh at 2/9/2004 4:07:06 PM
Hi, For security reasons we need to place a server outside the firewall and have another server inside the firewall. We want the machine outside the firewall to receive requests for our web application and forward them to our ASP.NET web application on the machine inside the firewall. ...more >>

Calendar Creation
Posted by mark.williams NO[at]SPAM eq.edu.au at 2/9/2004 4:06:37 PM
Hi, I'm interested in creating a page that display all 12 months in mini-style calendars. In the past i've done it with tables and asp, however i was interested to know if the asp.net calendar control would be better used? If so can you set 12 separate calendar controls to the 12 months? ...more >>

Contols and the <object> tag
Posted by neo_eire NO[at]SPAM yahoo.co.uk at 2/9/2004 3:56:48 PM
Hey all, from the microsoft web site it is possible to place a control inside the object tag. They give a demo project from which to demonstrate this. The only problem is when i create my own project the control appears blank. Nothing is there. Anyone have a similar problem or know what t...more >>

'Container' is not declared' error...am I missing a class?
Posted by darrel at 2/9/2004 3:39:09 PM
I'm using a repeater control. I need the itemtemplate to be slightly different depending on the data, so I thought I'd use a select/case statement. Unfortunately, I'm getting a 'Container' is not declared error (5th line, below). Why? Is it because I'm not importing a needed class? Am I using th...more >>

Possible to have common assembly dir w/o GAC?
Posted by Dave Kolb at 2/9/2004 3:11:18 PM
Hi, It is possible to reference an assembly in a directory other than in the bin subdir without registering in ghe GAC? For instance, I would love to have all my web apps on one server reference assemblies from a c:\inetpub\wwroot\common directory shared by the apps on that web server. T...more >>

Help with Arrays
Posted by Jeremy at 2/9/2004 2:56:10 PM
I have a predefined array that looks something like Private RemoveWords() As String = {"a", "b", "c" and I want to take an input string, and remove the words from the string that are in the "RemoveWords" array. So basically if my string was "Walk a dog" it would return "Walk dog" I tried doin...more >>

Multiple sites sharing single web.config file
Posted by BPearson at 2/9/2004 2:56:07 PM
Hello I would like to have several sites share a single web.config file. To accomplish this, I would point the root of these sites to the same folder. Is there any reason why I might not want to do this? (IIS 5 or 6 In case you're wondering why I would do this, we have many web sites on a si...more >>

Help: Could not open aspx page in Design View
Posted by Donnie at 2/9/2004 2:26:11 PM
Hello I'm receiving the following error message when I try to view an aspx page in Design view "Could not open in Design View. Quote values differently inside a '<%... "value" ... %>' block Below is the html in the page using the <%..."value" ...%> syntax <ItemTemplate><tr><td style="backgrou...more >>

HttpHandler to override IIS
Posted by Sean at 2/9/2004 2:07:20 PM
Hi all, Is it possible to use a custom HttpHandler to handler request that does not provide a specified page? e.g. http://www.aaa.com/there/is/no/such/document I tried to handle this request using a custom HttpModule, but IIS directs the request to an error page(404 file not found) before d...more >>

ImageButton CommandArgument
Posted by Gilles T. at 2/9/2004 2:04:30 PM
Hi, I need to passing parameters in CommandArgument of the asp:ImageButton. I don't use datagrid or datalist Here is my code: Private Sub ImageButtonCommandHandler( sender As Object, e As CommandEventArgs ) Session("Id") = e.CommandArgument end sub <asp:ImageButton CommandName="edit"...more >>

search database
Posted by Guoqi Zheng at 2/9/2004 2:01:57 PM
Dear sir, I have over 2000 products with detail information on database. I would like to offer our visitors an advanced search function to search our database. Currently, I am using the like % keyword in Ms Sql to offer the search function. However, I found that function not enough when peop...more >>

Add a block of HTML to my asp.net page
Posted by TPS at 2/9/2004 1:49:13 PM
I want to add a block of html to asp.net page. How can I add the HTML to a certain location on my page. Thanks. TPS ...more >>

width of the Page
Posted by Markusek Peter at 2/9/2004 1:13:39 PM
How can I get width of the Page? using c#... ...more >>

Clearing QueryString Name/Value pair from URL
Posted by to_jon NO[at]SPAM hotmail.com at 2/9/2004 1:09:18 PM
Hi, I have hyperlink objects in a datagrid that redirect the user back to the current page with this syntax: <a href="mypage.aspx?id=foo"> When the page reloads, code in Page_Load then takes the appropriate action based on finding the 'id' name/value pair in the URL querystring. This work...more >>

How to clear the scrollbar position programatically, take 2
Posted by Carl Mercier at 2/9/2004 1:07:41 PM
Hi, I have a long form that post back to itself at different places (different controls). At the very end, I have a button called "Next" that post back to itself again causing some panels to be hidden and some others to be shown to simulate a "Next Page" effect. Since I have many contro...more >>

Re: Data Binding problem ???
Posted by ajaymehra at 2/9/2004 12:51:47 PM
Hi, My stored procedure returns me data in this format : ID Date Wkday Hours --- ------ ----- ------- 1003 02/02/2004 Mon 5 1003 02/03/2004 Tue 3 1003 02/04/2004 Wed 8 ------------------...more >>

Anyone know this?
Posted by john at 2/9/2004 12:42:56 PM
Hello, I heard that there is a sample custom drop down control that I can use in my asp.net web app. The drop down allows the user the type not only the first letter but then the second, third...and so on reducing the list. Does anyone know where this is? Thanks in advance. John ...more >>

File Upload
Posted by SQL at 2/9/2004 12:33:21 PM
Hi all, I'm trying to upload a file from the user to the server. I have set up a folder on the server, and for testing sake, I've given full control to the everyone group. My code is as follows (again for testing sake, I've hardcoded a lot of stuff in): File1 being an input of type = file. ...more >>

Upload File Example
Posted by Steve Bishop at 2/9/2004 12:30:13 PM
I want to be able to design an online file upload portal for the Web. Is there any popular .Net examples of this? Help apprecaited. Thanks. Steve *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!...more >>

QueryInterface for interface Excel._Application failed
Posted by Michael Connerton at 2/9/2004 12:24:12 PM
The company I work for still uses Excel97. In a weaker moment I added the pia for Excel2003 in attempt to get more programatic functionality out of some Excel interfaces I have been writing. The pia is entitled 'Microsoft.Office.Interop.Excel.dll' I also added the registry entries for that pia by...more >>

ListBox (WebControls)
Posted by mg at 2/9/2004 12:16:08 PM
How can I remove (using C#) the items previously added to a System.Web.UI.WebControls.ListBox...more >>

UPS Tracking
Posted by HttpWebRequest at 2/9/2004 11:21:08 AM
I am trying to get tracking information from UPS web site without much luck. I got this working in VB 60 without any problems by using WinInet functions Here my test program. We need to get Tracking information from www.ups.com/ups.app/xml/track. When I tried to create the WebRequest with above ul...more >>

CustomValidator doesn't validate on a textbox that is empty
Posted by ned.kraushaar NO[at]SPAM earthlink.net at 2/9/2004 11:18:06 AM
I am trying to use a CustomValidator on a textbox. The Validator uses a client-side funtion but it doesn't run if the textbox is empty. If there is data in the text box it runs fine. Any suggestions appreciated. Thanks!...more >>

Strip Visual Studio META Tags Is Safe?
Posted by localhost at 2/9/2004 11:06:25 AM
I have these in all of my pages: <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" Content="C#"> <meta name=vs_defaultClientScript content="JavaScript"> <meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5...more >>

Hyperlink to email in asp.net
Posted by Steve Chatham at 2/9/2004 10:42:24 AM
This ought to be simple, but I've not been able to figure out how to do this. I have a request to create a list from a sql database to be displayed in a datagrid on an asp web page. So far, so good. What I now want to do is one of 2 things: 1. put a hyperlink at the bottom of the list...more >>

what are aspx.resx files for?
Posted by Hans Kesting at 2/9/2004 10:41:14 AM
Hi, When I add a webform, VS generates three files: WebForm1.aspx WebForm1.aspx.cs (could also be "WebForm1.aspx.vb" I guess) WebForm1.aspx.resx What is that last file for? How can I use it? I understand the use of (but haven't used yet..) the "stand alone" resource files but have not...more >>

Client side debug
Posted by Marc Robitaille at 2/9/2004 10:39:33 AM
Hello, Is it possible to debug vbscript or javascript on the client side just like we can do on the server side? If yes, how can I do that? Thank you Marc ...more >>

ASP.net books onLine
Posted by TJS at 2/9/2004 10:29:40 AM
is there a downloadable ASP.net books OnlIne like there is for SQL server 2000 ?? ...more >>

richtextbox not available in toolbox
Posted by New World Order Pigs at 2/9/2004 10:19:19 AM
I am trying to use the .net version of the richtextbox control on a web page and when I use the "system.windows.forms" namespace the richtextbox does show up in the toolbox but it is greyed out. I would like to know why this is and what I need to do to allow this object to be useable to at least...more >>

Respond to "delete" events on dynamic controls
Posted by Michael Ramey at 2/9/2004 10:18:22 AM
Hi, I'm dynamically creating a table of "delete" imagebuttons, that correspond to files on the webserver. I want to respond to clicks of these buttons, so I know to know what file to delete. Here is the code I'm using Dim imgShow As New ImageButton imgShow.CommandName = "Delete" imgShow....more >>

Get confirmation from user
Posted by Marc Robitaille at 2/9/2004 10:06:40 AM
Hello, I use a server side button to delete or update data in my database. To have a confirmation from the user I use this code that I have found here. cmdOk.Attributes.Add("OnClick", "return confirm('Do you want to change your pass word?')") I put this code in the Page_Load event of my ...more >>

RangeValidator not checking the RANGE?
Posted by D. Shane Fowlkes at 2/9/2004 9:32:47 AM
This seems simple enough but why can't I get it to check the input BETWEEN the two ranges I specify? If I set the Min value to 1 and the Max to 10, it will ONLY validate 1 OR 10....not 2 thru 9. Weird? I must be doing something wrong. TIA. My test page: http://www.drumpub.com/test.asp...more >>

user auth from password list
Posted by Paul at 2/9/2004 9:11:08 AM
Hi just wondering if someone could provide a brief sample or a link to one that provides code for a password authentication scheme. I am using VB.net and would like to only let certain users access a webpage and want to do this with a password scheme. Thanks Paul...more >>

Webforms are not displayed correctly in non-MS Browsers?
Posted by arnoldfranke NO[at]SPAM gmx-dot-de.no-spam.invalid at 2/9/2004 9:09:32 AM
Hi I coded a web application in VB.Net containing a webform, designed with Visual Studio. The Internet Explorer is able to display it correctly but all other browsers aren't. The attributes of all elements for example color , width and heigth of buttons get lost so the page looks like Garbage...more >>

Data extraction from MS Word file
Posted by madhu NO[at]SPAM softwareassociates.co-dot-uk.no-spam.invalid at 2/9/2004 9:09:32 AM
Hello Everybody, I am fairly new to ASP.Net. I have a requirement to extract data from a number of similar word files and put it into database. Eventhough I could do it with VB.Net, I am not able to do it with ASP.Net. In VB.Net, I used word.application object to open the file. Then I created...more >>

Catching return values of an SP
Posted by cesar_casafont NO[at]SPAM hotmail-dot-com.no-spam.invalid at 2/9/2004 9:09:30 AM
I have calling a stored procedure that returns two values, and I want to catch these values and to store them into a variable. Here is a piece of my SP inside SQL Server that shows the returned values: SELECT @Id = SCOPE_IDENTITY() SELECT @Id AS user_id SELECT 1 AS Value END G...more >>

Build Error
Posted by dm_dal at 2/9/2004 8:46:07 AM
I have a solution in VS.Net 2003. It contains 1 - asp.net project(c#), 1 - c# class library project and 1 - db project. When I try to build the solution, I get the following error: Could not copy built outputs to the Web. Unable to add 'C:\Documents and Settings\dyoung.BFGPDC\VSWebCache\DAL_...more >>

Help developing a SQL Query tool
Posted by Donnie at 2/9/2004 8:41:09 AM
Hello All I am trying to find some information on how to design/develop a SQL Query tool embedded in an ASP.NET web application What I would like to have is a tool that helps a user write SQL statements that are in turn used to query a database. The results of the query will then be displayed in...more >>

Client side character count - Textbox
Posted by Jerry at 2/9/2004 8:29:51 AM
In limiting textbox input to 500 characters I would like to include a dynamic count of characters input while the user is typing into a textbox. This would obviously be a client side control, possibly a custom validator with a function written in javascript. Has anyone done this? Does someone h...more >>

How to prevent a changed page from beeing closed???
Posted by Daniel Walzenbach at 2/9/2004 7:06:07 AM
Hi I am faced with the following problem: I have a page (let’s call this page page1.aspx) containing some TextBoxes and a hyperlink which opens another page (let’s call this page page2.aspx) as a popup using either window.open or window.showModalDialog. Since I want to warn the users of my app...more >>

Connecting to SQL Server from Web pages
Posted by Robert at 2/9/2004 6:28:08 AM
What user/account do I need to setup on my SQL 2000 Server, that requires the use of a Trusted Connection (Integrated Security=SSPI), in order for my postings to be able to make a connection to the database. The SqlConnection would look something like this? Data Source=MYSQL01;Initial ...more >>

xml and databinding
Posted by Karl Hungus at 2/9/2004 4:59:18 AM
Im trying to build the navigation menu on my site using an XML file as the admin. The XML file mirrors the nesting structure of the menu (example XML is below). Ive been up and down the samples but cant seem to find a way to bind this XML structure to an appropriate list or grid. My question...more >>

Simple way?
Posted by hnn at 2/9/2004 4:54:40 AM
How do i crash IIS with ASP.NET? ...more >>

Running a Web Application local without a network !
Posted by arkam NO[at]SPAM caramail.com at 2/9/2004 4:50:45 AM
Hi, I have a big web application that works on my web / application server ! Now I want to instal it on a laptop which is not connected to the network. My web application works with a database server which I can simulate with an access db ! Is there something else then IIS to do run m...more >>

Referring URL\VB
Posted by George at 2/9/2004 4:41:21 AM
VS.NET 2002\Web\VB I am trying to get the referring URL for one of my pages using this: Request.UrlReferrer.ToString Page 1 has a link to Page 2. I click on the link in Page 1, and go to Page 2. Page 2 is where I am trying to get the referring URL. However, instead of getting the URL of P...more >>

DataGrid: Carriage Return in HtmlInputText shall save row
Posted by wolfgang76 NO[at]SPAM web.de at 2/9/2004 3:40:06 AM
Hello, I have several datagrids in my application. At the moment, data rows which are in editmode can only be saved by clicking the corresponding save button. I would like to add the function that users can save the rows by hitting carriage return when they have done their entries in HtmlInpu...more >>

Adding User Controls at Runtime
Posted by Linda Wienholt at 2/9/2004 3:01:07 AM
Hi I am upgrading an ASP site where the content is being pulled from a database. On the ASP site the DB content included form tags and other html controls. I want to replace these with a user control but am not sure how to get the controls rendered correctly at runtime. If I output the content ...more >>

Incorrect HTML sent to browser
Posted by Linda Wienholt at 2/9/2004 2:51:06 AM
I have two usercontrols on the home page of my website. They are intermitently sending incorrect HTML to the browser, which results in a textbox being rendered with the wrong width. Either both controls render correctly or both are incorrect but never a mixture. When they are rendered correctly t...more >>

PreRender Event occurs immediatley after Load event
Posted by Alireza Ziai at 2/9/2004 1:41:13 AM
I have problem with prerender event in my page I dont know why prerender event occurs immediatley after Load event , I have same problem with Unload event too ,is it a problem with framework or sth ? ...more >>

browser refresh
Posted by ozcankanbur NO[at]SPAM yahoo.com at 2/9/2004 12:37:47 AM
how can I refresh browser of clients from ASP.NET Page? After client login on the page I want to refresh client's browser. Thanks...more >>

Updating Using Custom Classes and a Data Adpter
Posted by ryan NO[at]SPAM lawcentral.com.au at 2/9/2004 12:37:02 AM
Hi Ive got a custom collection class (inherits ArrayList) that contains a collection of Customer Objects. My Question is, if I populate that class with a dataset and I make modifications to the Customer objects in the collection class, how can I sycronise it with a dataadapter to update, dele...more >>

Exporting DataGrid to Excel
Posted by Neil at 2/9/2004 12:11:05 AM
Hi I'm currently exporting my datagrid to excel, taking advantage of the fact that excel can render html, the problem is that when i click the button to export it opens in browser, I want the button to launch Excel and leave the browser as is Any help appreciate p.s. I know that this can be ach...more >>


DevelopmentNow Blog