Psst! Did you know DevelopmentNow is a mobile web site design agency?

Contact us for help mobilizing your site, or to sign up for our beta Mobile Web SDK!


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 > october 2003

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

Xslt and webcontrols
Posted by Thomas at 10/31/2003 11:59:11 PM
Hello all, Is it possible to use webcontrols in a xslt file eg. <xsl:template match="products"> <asp:Button id="Button1" runat="server" Text="test"/>"></asp:Button> </xsl:template> /Thomas ...more >>


Horizontal Scroll Bar for listbox
Posted by Lloyd Sheen at 10/31/2003 11:45:51 PM
I have searched wide and far through google for a solution to no avail. Is there a method available to add a horizontal scroll bar to a listbox in asp.net. Thanks in advance ...more >>

Asp.Net Debugging Problem
Posted by Saurabh garg at 10/31/2003 10:38:20 PM
I am getting following Problem while Debugging Asp.net application "Unable to Start Debugging Access is denied" Could anyone guide me to a useful Solution apart of the Group Membership in Debugger Users Group because I've already done that. Regards Saurabh Garg ...more >>

Inter-Application Data sharing
Posted by PeteZ at 10/31/2003 9:25:55 PM
Hi, I was of the understanding that Session variables were GLOBALLY scoped across all Applications on a specific web site and that data obtained and stored in "variables" were available for other applications - it seems I was wrong. It appears that the data is held on a per-application inst...more >>

DataView Columns
Posted by Karl Napp at 10/31/2003 6:40:33 PM
Hi NG, how to make a DataView show only selected COLUMNS? E.g: DataTable table // is already in memory and has two columns: "id" and "value" DataView view // should only show all rows from "value" TIA, KN x-post & f'up to .adonet ...more >>

Calling Windows application from Web application
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 10/31/2003 6:38:46 PM
How do I call a C# windows application from a C# web application. I have been trying to use 'Add Reference' but windows application doesn't create dlls to be used for reference. If this is the only approach please suggest how to create dlls (csc is not installed in my system). Thanks ...more >>

Session_Start
Posted by Alberto at 10/31/2003 5:23:47 PM
I'd like to write some code in the Session_Start event of the global.asax but it doesn't work. Actually I'm writting this in the Global.asax.cs (In C#): protected void Session_Start(Object sender, EventArgs e) { ... } I inserted a breakpoint inside but it isn't never fired. I'm doi...more >>

ot javascript question
Posted by e at 10/31/2003 4:48:11 PM
I've been having an extremely difficult time finding an answer to this in IE / js groups, so I thought I'd try here. I've got an aspx page that delivers loads of report data into custom-named <span> tags on the client, hidden from the screen by @media classes. From a dynamically built menu of...more >>



Cancel button?
Posted by LL at 10/31/2003 4:43:13 PM
Hi, I have two buttons within a form, one is "Submit", another one is "Cancel". When click "Cancel", on server side, I redirect user to home page. but the validation controls fired first. How to disable them? Thanks. ...more >>

using inline stmts vs Page_Load event
Posted by Jack Frost at 10/31/2003 4:02:31 PM
What is the consensus on putting ASP.NET code inline in the html doc versus using code behind and C#. I find it confusing when pages include code in both places. For example, using DataBinder.Eval statements in the HTML. Is there an advantage to doing any coding within the HTML page? It seem...more >>

smart navigation property concept
Posted by Matthew Louden at 10/31/2003 3:30:20 PM
I want to clarify the new feature smart navigation property in ASP.NET. Let's use the example and assume this is in process.asp > > Here's a typical html form: > > <form action="process.asp" method="post"> > > 'GUI code > > </form> When we click the submit button, the form will send th...more >>

Dot Net Framework on win2k server
Posted by Rajesh Tiwari at 10/31/2003 3:25:55 PM
hi group, is it true that Dot Net Framework can not be installed in win2k server if it is a Domain server.or what are the limitations for installation of dot net framework on win2k server. thanks in advance -- Rajesh Tiwari ...more >>

ASP page to show different schedule on each day
Posted by Matthew Louden at 10/31/2003 3:12:09 PM
I want to create ASP page that shows the schedule of TV station. Since each day's (Monday - Sunday) schedule is different, and I want each day will display the schedule on that day of a week. I wonder if I need to create 7 different ASP pages and call different one on each day? This is just my i...more >>

aspnet_wp
Posted by BigGunS at 10/31/2003 3:04:19 PM
Hi ! I have developed a web-application using framework v1.1. My problem occurs randomly. Sometimes i get, i think, a deadlock in teh aspnet_wp-process. But even thou i have set the deadlock-timeout = 5 sec. in the machine.config- file it can take minutes and sometimes never until it real...more >>

Error trying to run
Posted by Ale K. at 10/31/2003 3:02:50 PM
i just reinstalled everything on my machine... i created a web project and when trying to run it i got the following.... What is it , how to fix it?? Thanks Error Server Error in '/Tester' Application. ---------------------------------------------------------------------------- ---- Parser...more >>

OLE Automation by Javascript
Posted by Kosic at 10/31/2003 2:44:55 PM
i wrote this js function in HTML: function OpenWord() { var a = new ActiveXObject("Word.Application"); a.Visible = true; a.WindowState = 1; window.blur(); a.Activate(); } if the it runs at localhost, it is OK, but it fail to create object when running at other client. ( The same Office su...more >>

autopopulating PDF files using C3 in asp.net
Posted by cholan at 10/31/2003 2:43:25 PM
Hi all, We are developing an asp.net application using C#. Right now we have a set of pdf files. we need to auto-populated some field in the pdf file from the database and show that in the browser. Can anyone please suggest how to do that. Thanks in advance cholan ...more >>

ASP.NET customized error page
Posted by Brian Henry at 10/31/2003 2:38:44 PM
I want to have a custom page for errors, instead of the standard page which we get now built into asp.net, so i can have the error page shown in the company's template... how would i go about doing this? anything to do with the application_error in the global.asax.vb file? thanks! ...more >>

How can I user binarywrite and frames?
Posted by Vinay at 10/31/2003 2:38:13 PM
Hi All: I have a frameset (right and left). In the left frame I have a listbox that contains items. When the user clicks on any one of these items (each item points to either a word document or an image) - I'd like to show this (image or word document) in the frame on the right. Would anyone h...more >>

Page Caching
Posted by Cliff Harris at 10/31/2003 2:19:37 PM
I have a page that, for complicated reasons (javascript stuff) that I will not go into, needs to be cached on the client machine. However, when I go to the page for the first time (not a postback), I need the page to not be cached and to load fresh from the server. I do have an intermediate pag...more >>

Very simple Question i hope about server control
Posted by me2u at 10/31/2003 1:41:47 PM
Hy for those who cab help me out. I am bussy with a ASP.Net Cource but the most simple example i cannot seems 2 get it work. Each time when i make a button as a Server Control the button wil not appear on the screen. How and what is wrong ??? Thanx in advance, Mike ...more >>

Is there a Namespace Reference somewhere?
Posted by john_20_28_2000 NO[at]SPAM yahoo.com at 10/31/2003 1:41:43 PM
For example, I cannot get this to work (in my page_load on the server): chkCompleted.attributes.add("onclick", "javascript:return confirm('Are you sure?');") My code is: <asp:datagrid....> <columns> some boundcolumns <asp:Template ColumnHeaderText="Completed" ItemStyle-HorizontalAlign...more >>

session state between ASP and ASP.NET
Posted by Dan Vanderboom at 10/31/2003 1:35:28 PM
Is there any way to read ASP Session variables from an ASP.NET application? Also... I was able to read some cookie values from ASP to ASP.NET, but one of the cookies had a collection of values. Is there a way to retrieve those by name instead of by index? ...more >>

HttpContext.Cache
Posted by George Ter-Saakov at 10/31/2003 1:18:57 PM
What is HttpContext.Cache for ? The usual HttpRequest lasts miliseconds. Why would someone to cache anything? We do have HttpContext.Items to keep any extra info during the request. Can someone explain me the use of the HttpContext.Cache. Thanks. George. ...more >>

Can anyone point me in the right direction.
Posted by Marc Bishop at 10/31/2003 12:56:33 PM
Hi all, i want to display a list of specifications but only want them to be displayed if the returned value from the database is not "". the only way i could think of was If height <> "" then showspec = showspec + "<TR><TD>specHeight</TD><TD>" & height & "</TD></TR>" end if but this is a r...more >>

Calendar Control Recommendation?
Posted by Jeff S at 10/31/2003 12:13:29 PM
I would like recommendations for implementing a calendar in an ASP.NET web site. My plan is to store date and event information (e.g,, "Spring Sale") in a database, and when the page is requested, load the calendar. Users would ideally view an entire month, and a short description of an event wi...more >>

VStudio very slow
Posted by Alvin Bruney at 10/31/2003 12:12:36 PM
I installed kazaa and reason 2.5 demo then uninstalled them last night. Visual studio Asp.NET web apps in debug mode are taking at least 45 seconds to run everytime today. Anybody have a work around for this aside from me having to do a clean install of VS? regards -- ----------- Got...more >>

Can a traditional ASP site be done with VS?
Posted by Bruce W...1 at 10/31/2003 11:41:49 AM
I've done a couple of ASP.NET websites using the latest Visual Studio. But now I'd like to try doing a traditional ASP (not .NET) website. Can the latest Visual Studio do this? Thanks for your help....more >>

Steps to use resource files in Visual Studio.NET
Posted by Earl Teigrob at 10/31/2003 11:35:08 AM
I am just trying to get the simplest resource file working using Visual Studio.NET 2003. Since every aspx file has a .resx file associated with it, I just added a key called "test" to it and am using the code below to try and access it. However, I get an error messege executing the program [Co...more >>

Radius Search
Posted by momo at 10/31/2003 11:12:54 AM
Can anyone help me? I am writing an ASP.NET app. and I need to be able to have people search based on X radius of a zip code. Please help. Thanks, Momo ...more >>

Firing events?
Posted by at 10/31/2003 11:11:40 AM
I have a webform with an Image Button on it and an attached event handler for a Click event. I have the same on another page. This click event for the first one doesn't work - you click on it and it doesn't even attempt to postback. The second one does. The code between the two pages s...more >>

Dynamic controls in DataGrid not retaining values
Posted by Elliot M. Rodriguez at 10/31/2003 11:02:32 AM
I am not sure how to implement this. I have a DataGrid which is bound to a DataSet that the user creates by adding items from a dropdown box on my page. When the dropdownlist item is selected, a new DataRow is created, and in my ItemCreated event I add a DropdownList and a TextBox object in 2 ...more >>

Type Hashtable not defined
Posted by diya at 10/31/2003 10:37:42 AM
I am trying to use Hashtable . When I declare hashtbale in my codebehind file as Dim x as HashTable I get the following error: 'Type Hashtable not defined . ' Why am I getting this error and what should I do?...more >>

Slow page loading EVERY time
Posted by Fabricio Tofoli at 10/31/2003 9:47:11 AM
Hello all, I have a simple ASP.NET project that displays the contents of a MySql database table in the web page. All pages are extremelly slow, and not only the first time you access them, it's slow every time... It seems the problem is not caused by server page generation... it really fee...more >>

enter button as submit?
Posted by Eddie B. at 10/31/2003 9:46:23 AM
Does anyone know how to make my enter button act as submit? I am trying to eliminate the user having to click an extra button, I want the user to be able to type a word and hit enter. Thanks, Eddie P.S. Happy Halloween ...more >>

iewebcontrols
Posted by john88m NO[at]SPAM hotmail.com at 10/31/2003 9:43:37 AM
I installed iewebcontrols.msi on a production server but my treeview still is messed up. on the dev environment it is ok. I guess there was a patch with it but I dont remember where i got the patch to fix it. if any one knows please let me know. Thanks in advance ...more >>

Response.Redirect
Posted by Kerri at 10/31/2003 8:59:49 AM
Hi, I have do some Redirects in my applitcaion. For example, when the use rhas logged in successfully I redirect them to a different page. In my Redirect all I was doing was a.. Response.Redirect("SomePage.aspx") When I used above I got below error. 2) Exception Information ****...more >>

Highlighting text
Posted by JemPower at 10/31/2003 8:57:34 AM
Hi All, I'm trying to create a VERY simple text editing page, using a textbox that the user can type, and some buttons to make the selected text bold, italic, underline, etc, etc. I've seen a few example that use the DIV and CONTENTEDITABLE, and the "ExecCommand" however I have 2 problems w...more >>

C# Hit hyperlink and send a column value to the code behind.
Posted by pgiambat NO[at]SPAM 52monkeys.com at 10/31/2003 7:23:11 AM
All, What I want to do: ******************* Click on a hyperlink in the last column in a datagrid, have it grab a value in the fourth column in the same row and send it to the codehind into a function that will then put the value into a query and send it off the database.... and do some stuf...more >>

Display Excel Shape Object in Web Browser(using ASP.Net)
Posted by VP at 10/31/2003 7:17:41 AM
Could you guys please resolve this problem for me? My web form is accessing a Excel spreadsheet. I can read text info from (each cell) an excel spreadsheet. But, there's a Shape object in excel, which I need to read and display in the web browser. Please help, it's urgent. Thanks a bunch in...more >>

.NET v1.0 / .NET v1.1 Deployment Q
Posted by George Durzi at 10/31/2003 7:17:34 AM
My production environment is running my web application using v1.0 of the ..NET Framework. I've upgraded my development environment to v1.1 and Visual Studio 2003. At this time, my project doesn't use any v1.1 specific features. I've made updates to my application, and need to re-deploy it t...more >>

Can't hide column in datagrid
Posted by enak at 10/31/2003 6:14:03 AM
I populate a datagrid by setting the datasource to a datatable. I then, bind them. After that I try to hide the last column but am not able to. I get an error message. Here is my code: Me.dgReport.DataSource = ds.Tables("tFirst") Me.dgReport.DataBind() Me.dgReport...more >>

No Data.. urgent
Posted by sandy at 10/31/2003 6:12:59 AM
Dear all, i am using the following code to get data from Oracle Database. My query returns say 400 records. Sometime the datase dows not return any records, but if i reduce the number of columns in the query, i can get all tthe records.. any idea? DataSet dsTmp = new DataSet(); OracleD...more >>

Public variable = application("variable") ?
Posted by THY at 10/31/2003 5:40:54 AM
Hi, I am having some problem, I declare few variable in a public module and use them in the web application. But after that I found that the variable declared in public variable = application("variable"), and it will be shared by all user ... but I am not very sure about it, anyone know it ? ...more >>

Updating db from relational view - laborious or what?
Posted by googleposter2003 NO[at]SPAM hotmail.com at 10/31/2003 4:50:02 AM
Scenario: I select data from a SQL Server View which links 3 tables, into a single dataset table. I update some of those fields on a web form. When I want to update the db, clearly I can't update via a View - makes perfect sense. But because I used a View, I can't use the CommandBuilder. I ha...more >>

Debugging traditional asp pages under VS.NET 2003
Posted by Jan at 10/31/2003 4:30:20 AM
Hi, I have W2K server, VS.NET 2002 and 2003 installed, I set all necessary settings (debug mode in VS.NET, ASP debug in web site properties, all project properties for debugging) in VS.NET 2003 but it doesn't work ;-(. The error which appeared (when I tried to run debug) was: "error while ...more >>

ASP.NET - Keyword not found: 1;PASSWORD
Posted by Sid at 10/31/2003 4:12:06 AM
Hello all, I am having a nightmare trying to get my asp.net page to load. Whenever it tries to create a new SqlConnection object I get this error message : 'Exception Details: System.ArgumentException: Keyword not supported: '1;password'.' Does anyone have any idea how to solve this? ...more >>

could not load type library
Posted by Blue Frog at 10/31/2003 3:52:10 AM
Hey, Have a weird problem - been looking for a solution for 2 days solid now. I am developing my first asp.net site and everything was going fine while I developed on my XP laptop but I copied the site over to my 2000 server box and set the permissions, set up the application again - configu...more >>

Newbie Question
Posted by Meir Rotfleisch at 10/31/2003 1:44:06 AM
HI I would like to control the style of a web page as results of user interaction (selects options from lists etc) . Can someone show me how to access the Document object inside a code snippet something simple like Button Event changes the background color of the page. I should be able to ext...more >>

sms email receive twice for tmobile and cingular
Posted by homaneag NO[at]SPAM yahoo.com at 10/31/2003 1:00:49 AM
Hi, I'm writing a webpage that will send sms to cell phone using smtp (System.Web.Mail.SmtpMail.SmtpServer) When I send to tmobile (tmomail.net) or cingular (mycingular.net), cell phone receives twice. When I send the same message to AT&T (mobile.att.net) or regular email, I just receive...more >>


DevelopmentNow Blog