Home All Groups Group Topic Archive Search About

ASP.NET Development

microsoft.public.dotnet.framework.aspnet
Score Third Level Domain And ASP.NET 2.0
Ross Nornes - 2 Sep 2006 11:34 PM - 3 messages
I need to write and test a new ASP.NET 2.0 application that uses third level domains, like test.MyDomainName.Com. I just cannot figure out how to get the new development server to allow this, if its even possible. ...
Score number of queries
Howard - 2 Sep 2006 11:14 PM - 2 messages
I often see a message like this on the bottom of web pages page generated in 0.04 seconds used 5 queries how do they count the number of queries ? Howard ...
Score IsNumeric: Convert.ToInt32 vs. Convert.ToInt64
sck10 - 2 Sep 2006 10:32 PM - 5 messages
Hello, I am trying to test for IsNumeric using C# with the following: public bool IsNumeric(object TestValue) {    try    {       int i = Convert.ToInt32(TestValue.ToString());       return true; ...
Score Reset Function variable after Repeater control is finished
sck10 - 2 Sep 2006 10:27 PM - 3 messages
Hello, I have 3 repeater controls referencing the same function below.  What it is doing is testing to see if the first column repeats itself and if so, add a line with the managers name.  The problem I have is how to reset ...
Score GridView RowDataBound Event Issues
ryan.mclean - 2 Sep 2006 9:45 PM - 4 messages
Hello everyone, I'm in a bind, and I hope somebody can point me in the right direction. I have a gridview that is bound when it is not a postback. When the grid is bound, I remove the contents of a cell based on criteria ...
Score Problem with ReportingService.Credentials - Syste.Net.WebException - "The request failed with HTTP s
Shree - 2 Sep 2006 7:33 PM - 1 message
While invoking the web service from client, I am setting the credentitals using the following code... ReportingService.Credentials = System.Net.CredentialCache.DefaultCredentials; But in debugger when I check the properties - 'domain', 'user name' and 'password' set in the ReportingService.Credentials; they are blank!!! ...
Score Firefox - ASP.NET 2.0 Client Callback
Philip - 2 Sep 2006 5:24 PM - 2 messages
Does Firefox (latest version - 1.5.0.6) support ASP.NET version 2 client callbacks ? I have written a sample C# client callback app.... and with FireFox ... Page.Request.Browser.SupportsCallback=true, however Page.Request.Browser.SupportsXmlHttp=false. In any event, if I ignore the Browser capabilities FireFox does not work.   ...
Score DataSource: Query String Supplying Parameters
Jim McGivney - 2 Sep 2006 5:09 PM - 2 messages
When configuring a DataSource for a control in VS'05, when formulating the WHERE clause, one of the options is to use a Query String to supply the parameters.  Is this the Query String that is used by a response.redirect ...
Score Wireless Laser Desktop 6000
Jeff - 2 Sep 2006 4:27 PM - 1 message
Hey! Today I went to a computer shop and bought a new Microsoft Wireless Laser Deskstop 6000 (keyboard + mouse). I followed the instructions on how to install it on my winXp (sp2) computer. I installed the software which came with the package: ...
Score find a TextBox in a FormView in javascript
Liones - 2 Sep 2006 10:42 AM - 3 messages
Hi, In javascrip i have to find a "Versam20TextBoxEd" in a FormView but i get error of compilation the "Versam20TextBoxEd" is not in the context I can find the FormView document.getElementById('<%=FormView3.ClientID%>');  ok but i don't find the TextBox ...
Score VB2005 EXPRESS
Omar Abid - 2 Sep 2006 10:06 AM - 3 messages
Hi members, We are happy to tell that if you search for : jobs with high wage or to debug a program or to find a good source code and to make a good design 4 your apps our group is the best to help u ...
Score showing a list of dynamically resized images...
Milsnips - 2 Sep 2006 9:30 AM - 1 message
hi there, i've a function that reads image filenames from database, and displays into a repeater control, but what i'm trying to acheive is as i loop through each filename, i want to resize it to say 100 pixels wide(which i already have ...
Score Getting row index by Event Args...
basulasz - 2 Sep 2006 8:22 AM - 4 messages
I created a radio button dynamically in a row of a Grid View control. I enabled auto post back property of this radio button to execute a code. For example , I create 20 rows and I want to know about which button is checked. ...
Score CPU Usage going 100%
Aryan - 2 Sep 2006 6:59 AM - 2 messages
Hi,   I am getting weired problem all of sudden for CPU usage going to 100% for aspnet_wp.exe. This problem started after installing (CLRProfiler - 86x). I am using Framework 2.0. Before installing CLRProfiler,my application was working fine and to my strange the same application ...
Score Installing assemly to GAC in a webfarm
Patrik - 2 Sep 2006 6:49 AM - 1 message
Hello! Is there a way to install our assemblies into the gac for all our servers at once? I dont really keen on drag-drop/gacutil/.msi the assembly into all our servers. Any other recommendations? I have been thinking of placing the assembly ...
Score How to check if SQL Server is running via asp.net
wwwmike - 2 Sep 2006 6:48 AM - 4 messages
Problem: When my provider shuts down the SQL Server IIS receives a few error messages and then switches the site to 'SERVICE UNAVAILABLE'. Before IIS kills itself it is friendly enough to send me an error message. ****ERROR MESSAGE 1****** ...
Score Type or Namespace Not Found
hufaunder - 2 Sep 2006 5:43 AM - 1 message
I have a web project and a class library project. In the web project I am trying to use some classes in the class library project. Unfortunately, I can't compile it. The error is: The type or namespace name MyNamespace.Test could not be found. ...
Score Re: Manually Configure site for ASP .NET 2 - Revisited
D - 2 Sep 2006 5:03 AM - 2 messages
Same problem here, but with Windows XP x64 Edition.  I'm trying to setup the default DotNetNuke website and get: Configuring web site  http//localhost/DotNetNuke to ASP .NET 2.0 failed. You may need to manually configure this site for ASP.NET  2.0  in order for you ...
Score sqlserver 2005 login problem
Carlos - 2 Sep 2006 3:18 AM - 2 messages
Hi all, I just wrote an asp .net 2.0 sample app intending to connect to a database (in sql server 2005). I provided the mixed mode access authentication in the sql server, and provided to the aspnet account user access with the dbo role. I also configured IIS to get integarted ...
Score What is this ?
Jl_G_0 - 2 Sep 2006 1:18 AM - 2 messages
I created one hyperlink column and it worked great, but I used one thing and I want to know what this means. Since its a symbol I cant find it anywhere, and I dont know the name of this : {0} ...
Score IsNumeric
sck10 - 2 Sep 2006 12:31 AM - 13 messages
Hello, I am trying to determine if a value is NOT numeric in C#.  How do you test for "Not IsNumeric"? protected void fvFunding_ItemInserting_Validate(object sender, FormViewInsertEventArgs e)   if (e.NewValues["Funding"] != "" && Not IsNumeric(e.NewValues["Funding"])) ...
Score Adviceon how to configure ver 1.1 and 2.0 on the same PC
Patrick.O.Ige - 1 Sep 2006 11:15 PM - 2 messages
I want to have asp.net 2.0 and 1.1 on the same PC I have an Win XP professional on this PC. I have ver 1.1 and sql 2000 installed already but i want to add .Net ...
Score Multiple web.sitemap files and selection of current node
MS Development - 1 Sep 2006 9:54 PM - 1 message
Hello Newgroup, I'm new to ASP.NET and its nice navigation features. I have now some problems with them which I hope can anyone solve. So here we go: The generel idea is I have a page like e. g. eBay. On the eBay site you have ...
Score ASPX frpm ASP
Bala Nagarajan - 1 Sep 2006 9:15 PM - 2 messages
Hello,        Does any one know how to invoke a aspx (asp.net 2.0) page from an asp page? I just tried to open a aspx page in a window from a asp page but i ...
Score Inline alternitive to Page_Error?
Carlo Razzeto - 1 Sep 2006 9:05 PM - 4 messages
Is there anyway to inline Page_Error type global error handling in an ASP.Net webpage? Currently I work on a very large web system where the entier web front end is contained in a single project file. I would like to ...
Score Shuffling rows in a GridView
justin - 1 Sep 2006 8:57 PM - 3 messages
One of the gridviews i'm using now apparently needs to have the added functionality of re-arranging the order of the records it's representing. These records have a priority field which the dataset gets sorted on and I thought the quickest way to do this would be to ...
Score BC30451: Name 'objCDO' is not declared
AbraAbraCadabra - 1 Sep 2006 8:49 PM - 2 messages
Help. I get this error " BC30451: Name 'objCDO' is not declared" and it references the following line... objCDO = Server.CreateObject("CDO.Message") What do I need to do to solve this error (I am in the process of converting my ASP site to an ASPX site). ...
Score Problems with LoginView and GridView
Sean Sims - 1 Sep 2006 8:32 PM - 1 message
recently added a LoginView to an existing page, it now looks like this: <%@ Page Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="AtPress.aspx.cs" Inherits="AtPress" Title="Calendars Marked As 'At Press'" %> <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" ...
Score separate .cs file for global.asax
Larry Epn - 1 Sep 2006 7:19 PM - 5 messages
Simple question:  I have a c# asp.net project that was given to me.  It has the c# code within the <script> section of the global.asax file.  I would rather have it in separate files; e.g., global.asax.cs;  So, I deleted the ...
Score .NET Job Chicago
Arsen V. - 1 Sep 2006 7:03 PM - 4 messages
Hello, Is there a newsgroup specifically for posting info re: .NET full-time position in Chicago, IL? Thanks, -AV ...
Score Non-popup calendar control?
rockdale - 1 Sep 2006 6:48 PM - 6 messages
Hi, I tried to search web for an non-popup calendar control, (like javascript calendar) but could not find a good solution. Most solutions are popup another window and show the calendar, then close and assign the date back to the main window when user selected a date. Also find ...
Score dynamic buttons
chxant - 1 Sep 2006 6:37 PM - 1 message
Hi, I'm trying to develop a webapplication with a dynamic panel. The first time the PanelResult is empty. After the user clicked on the Login button I want to show a couple of radiobuttons (from a database, so it has to be dynamic) and a new ...
Score How to prevent DTD validation during transform
K. Wilder - 1 Sep 2006 6:34 PM - 1 message
I'm having a problem getting this to work in ASP.NET 2.0.  I'm trying to prevent the validation of a DTD in the incoming XML. I have this XML that I receive via xml web service from an external source.  ...
Score Changing my Style Sheet does nothing
~john - 1 Sep 2006 6:26 PM - 1 message
I'm using VS.NET 2005 and whenever I change a property in one of my CSS classes, nothing happens when I hit "run" to view my page in IE. I'm guessing it's storing this in cache somewhere? Any help would be ...
Score How to Insert into new table, then delete from old table
D - 1 Sep 2006 6:21 PM - 4 messages
Hello everyone -         General question. How would I create a SQL code in ASP that will insert selected records into a new table, and then delete those same records from the original table in one command? I can INSERT INTO ...
Score More on controlling page flow...
Coleen - 1 Sep 2006 6:12 PM - 1 message
I guess I didn't make my problem clear enough, or maybe there is no better way to do this... I have an ASP.Net (1.0 at the moment but we are upgrading to 2.0 using VB.net as the codebehind) web application that has about 40 pages.  We use a ...
Score Integrating with MS Outlook Calendar
Royden - 1 Sep 2006 6:01 PM - 1 message
Hi, Iim currently busy writting a web app that must integrate with the ms outlook calendar.Can anyone please advise me on how to integrate my web application with the ms outlook calendar. Thanks Royden ...
Score Integrating with MS Outlook Calendar
Royden - 1 Sep 2006 6:01 PM - 1 message
Hi, Iim currently busy writting a web app that must integrate with the ms outlook calendar.Can anyone please advise me on how to integrate my web application with the ms outlook calendar. Thanks Royden ...
Score gridviews in page design
Carlos - 1 Sep 2006 5:48 PM - 2 messages
Hi all,   I need to place 5 gridviews next to each other. However, during esign time, the gridviews are placed under the previous.I played with the position style of the document but it did not work. Any suggestions? ...
Score print question
CSharpguy - 1 Sep 2006 5:15 PM - 2 messages
Is there a way to have the user click a button on a web page and print that page in landscape or no? ...
Score DataBound Control can consume more than one DataSourceView
Martin - 1 Sep 2006 4:20 PM - 1 message
.... according to [link],17,Data-bound Controls The implication is simulatneously. anyone know how? Thanks Martin ...
Score Repeater ClientID Change after DataBind() (BUG?)
Iain - 1 Sep 2006 4:08 PM - 1 message
A placeholder a repeater and a couple of textboxes walk into a bar....haha... No, Seriously, I have a placeholder, a repeater, the repeater itemtemplate has a textbox in it, and a submit button to tie it all together.  So, in the page_load event I bind to a simple array using: ...
Score Strange parse error calling ASP.Net WebService
Robbert van Geldrop - 1 Sep 2006 3:55 PM - 4 messages
By making a call to a webservice I receive the following error page, we did a complete new build but the error still exist: The installation of the webservice is on an win 2003 standard service pack 1 server. Server Error in '/BackupAgentServices' Application. ...
Score custom dropdown problems keeping selected index and lisitems
jason.hau - 1 Sep 2006 3:31 PM - 1 message
Anyone come up agains this? Essentially, I've got a custom dropdownlist that inherits from System.Web.UI.WebControls.Dropdownlist (funny that) the only things I'm overriding is rendercontrol in taht it adds an image prior to base.rendercontrol. For some reason, if autopostback is set and the ...
Score Cannot run a ASP.NET application in Debug Mode
Rekha - 1 Sep 2006 3:26 PM - 3 messages
Hi, System: Windows XP, Visual Studio 2005, ASP.NET 2.0, framework 2.0 When I run my web application in debug mode, I am getting the following error: "Unable to start debugging on the web server. The COM+ registry database ...
Score How to access controls on another aspx page
~john - 1 Sep 2006 2:56 PM - 5 messages
If I have a label on the Master Page that I would like to change its text with a button on one of the content pages, Default.aspx... It's giving me an error saying "Label1" is not found. Can you only find ...
Score How to put Javascript in a page using masterpage
rockdale - 1 Sep 2006 2:54 PM - 2 messages
Hi, I have a page which use a masterpage. And I put a javascript in this page like below: <%@ Page Language="C#" MasterPageFile="~/SITE.master" CodeFile="TEST.aspx.cs" Inherits="TEST_aspx" Title="TEST Javascript" %>     <script type="text/javascript" language="javascript"> ...
Score How do I get IE to open maximized when debuggin?
~john - 1 Sep 2006 2:53 PM - 1 message
When I click the "start debuggin" In Visual Studio 2005 it opens IE in a small window, then I have to manually click on the maximize button so I can see the whole webpage... I can't find any settings in VS to make ...
Score findcontrol behaviour
tarscher - 1 Sep 2006 1:48 PM - 2 messages
Hi all, When a user clicks a button controls are generated     protected void keywordsDropDownList_SelectedIndexChanged(object sender, EventArgs e)     {         int numberOfTextBoxes = Convert.ToInt16(keywordsDropDownList.Text);         TextBox myTextBox; ...
Score How to render a page
Heron - 1 Sep 2006 1:38 PM - 3 messages
Hi, I need to render my site for html 3.2 so I ran into to Html32TextWriter and managed to render some usercontrols but how do you create an actual page? In the default.aspx I tried to create my login page like this. ...
Score How to format column in datacolumn
VISVAMBHAR TRIBANG RAJAT AMOL TANMAY RASIK VISHAL BHUSHAN SUBHASH SOUMIL OMKAR HARSHIT SUDHIT GARUD - 1 Sep 2006 12:45 PM - 1 message
Hi, I need display dropdown with data from two columns, so I am doing like this: DataTable source = data.GetSomeData(); //returns a datatable source.Columns.Add("DisplayName", typeof(string), "[EventTitle] + ' (' + [EventDate] + ')'"); theDropdown.DataValueField = "IDColumn"; theDropdown.DataTextField = "DisplayName"; //created above theDropdown.DataSource = source; ...
Score GetControlValidationValue returns empty string
kurt sune - 1 Sep 2006 12:40 PM - 1 message
I have written a Custom Validator. However the ServerValidate(ByVal source As Object, ByVal args As ServerValidateEventArgs): sub gets called twice. First with an empty args-argument, secondly with a correct value. By debugging I found that the first call to ...
Score GridView issue
ram_kri - 1 Sep 2006 12:17 PM - 2 messages
Hi Guys, Here is a uncommon scenario that I had to work on.. I have a GridView which is associated to a DataSource. But I have a couple of columns (item-templates while the rest of the columns are boundfields)which have labels. Now, the datasouce that is bound to the ...
Score Assemblies location
Gomolyako Eduard - 1 Sep 2006 12:06 PM - 1 message
Hello. I have a question. How to define assemblies location at web.config that contains http modules and http handlers implementation? At default "bin" folder can contain this assemblies, but i want to define another folder, can i am? Thx for your advice. ...
Score ClientID and Request.form()
cannontrodder - 1 Sep 2006 12:04 PM - 2 messages
I am writing a composite control that allows two-way binding between a collection of boolean values and a set of checkboxes. In the CreateChildControls, I add each checkbox control that I need and give it a numbered id/name while setting it's checked property as per ...
Score Paint app in a web page
unicomp21 - 1 Sep 2006 11:36 AM - 1 message
Make sure .Net Framework 2.0 is installed on your workstation. Then visit [link] ...
Score does it exist a decompiler for asp.net?
André - 1 Sep 2006 11:21 AM - 3 messages
Hi, I made a compiled asp.net 2.0 application and i wonder whether i would be possible to decompile the application. If yes, how to protect the code from being read by anybody with that decompiler? thanks André ...
Score app design/architecture question
CSharpguy - 1 Sep 2006 11:12 AM - 4 messages
I have a 03 .NET web that does not use Typed DataSets, it uses a Busines Layer/DataLayer classes. Alot of my reading on .NET 05 is using the DataSets for the datalayer/business layer. I have a 05 web app that I used the ...
Score to set the maximum value and class intervals for a bar chart using c#
karthi - 1 Sep 2006 11:11 AM - 1 message
I am trying draw manually a bar chart setting up x,y axis and dividing the class intervals.setting up maximum and min values from a any given set of data. If anyone can help me Regards, carthi ...
Score The XML page cannot be displayed
ninja - 1 Sep 2006 11:01 AM - 2 messages
I have a problem running my asp.net websites, they all throw the error mentiond below, and the funny part is, there are no errors when I test before deploying. The error is per below: The XML page cannot be displayed ...
Score Where to place engineering dll used by website
Torben Laursen - 1 Sep 2006 10:17 AM - 1 message
Hi My asp.net website is using a c++ dll that I have written. But where should I place it so I don't have to hardcode the path in the c# code? It is used by code that is inside the App_Code folder using a number of ...
Score hi urgent help needed in nested repeater
gauravkg via DotNetMonster.com - 1 Sep 2006 9:07 AM - 1 message
Problem : I have a nested repeater in which i am showing data through table on load the description is hidden using div display:none on clicking of title it shoul show me the description row.. the code i have used is ...
Score hi urgent help needed in nested repeater
gauravkg via DotNetMonster.com - 1 Sep 2006 9:07 AM - 1 message
Problem : I have a nested repeater in which i am showing data through table on load the description is hidden using div display:none on clicking of title it shoul show me the description row.. the code i have used is ...
Score hi urgent help needed in nested repeater
gauravkg via DotNetMonster.com - 1 Sep 2006 9:07 AM - 1 message
Problem : I have a nested repeater in which i am showing data through table on load the description is hidden using div display:none on clicking of title it shoul show me the description row.. the code i have used is ...
Score Business Objects?
Arpan - 1 Sep 2006 8:50 AM - 3 messages
This is how I am creating a simple business object: 'This code exists in a class file named MyDatabase.vb Imports System Imports System.Data Imports System.Data.SqlClient Namespace ASPNETDB     Public Class MyDatabase     End Class ...
Score running asp.net project on distributed servers
ozcankanbur - 1 Sep 2006 7:43 AM - 3 messages
How can I run an asp.net project on distributed servers? (WEB SERVER / APPLICATION SERVER / DATABASE SERVER) My asp.net project runs with ui.dll,biz.dll and data.dll so you know all the assemblies must be in bin directory on the web server. ...
Score GridView Question
Gunawan - 1 Sep 2006 7:43 AM - 4 messages
Dear All, I have data which display on the GridView. GridView contain 3 Column (ProductId, ProductCode and Description). I would like to display only Product Code and Description so I hide ProductId Column. Is there any command so I can take value of first column which is Product ...
Score Send Mail Problem
Max - 1 Sep 2006 7:33 AM - 2 messages
hi I used mailmessage object to send the mail, my smtp server don't require authentication, when i try to send the mail it shows error. following is the code to send mail. Dim mymail As New MailMessage         Dim smtp As SmtpMail ...
Score Server.Transfer() to page with http-equiv="refresh"
Totto - 1 Sep 2006 7:19 AM - 3 messages
Hi, I'm doing a server.Transfer to a page with http-equiv="refresh" but when the refresh occurs the page that was doing the Server.Transfer is loaded. Anyone know if  there is a way round this. Something to "flush"? ...
Score Login using NT login details from web form problems
DavidADEW - 1 Sep 2006 7:13 AM - 3 messages
need a ASP.NET C# web page that lets a user enter their NT user name and password and passes to NT to see if they are a valid NT login. I am aware of the System.DirectoryServices.DirectoryEntry classes, and ...
Score Manual Insert, Edit MS Access Database Records
MA P - 1 Sep 2006 6:38 AM - 1 message
Hi! I am currently using MS Access Database on my ASP.NET 2.0 project thru VWD Express. I found that it is running when updating records thru a datagrid view but I want to customize the inserting record to a database without ...
Score Conditional Operator in ASP
Brad Farrell - 1 Sep 2006 4:58 AM - 3 messages
I'm trying to code a line in my .asp that will check for one of three values in a field and either: a) if null, no display b) if set to -.01, show the "Please call..." c) show the price ...
Score UserControl with databound repeater drops values on postback
Paul - 1 Sep 2006 4:42 AM - 1 message
Hi all, I have a user control that contains a repeater that generates a list of check boxes. The checkboxes render fine, but they don't maintain their checked state on postback. I've tried using Page_Load, Page_Init, OnInit, enabling and disabling ...
Score Compiler Error Message: BC30807: 'Let' and 'Set' assignment statem
c676228 - 1 Sep 2006 4:20 AM - 3 messages
Hi everyone, Our company has several different servers which  were hosted in different places. One of the servers I administer is using windows 2000 server which can run both asp and asp.net. I didn't do any specific IIS configuration. ...
Score How do I change the current page without loosing state information
Owen Richardson - 1 Sep 2006 2:54 AM - 2 messages
I have an asp.net website where i have a quick search facility built into my master page. the search is a web control, with a drop down country box and a list box full of cities. When i select my country my citylist is refreshed ok. I want to be able to ...
Score AddWithValue NOT working
Sonu.NET - 1 Sep 2006 1:59 AM - 1 message
txtAssoZip.Text = "Some Data" txtZip.Text = "Some Data" Dim strConn As String = "Server Connection" Dim str As String = "Update ZipLookup SET AssociatedZips=@AssoZip where Zip=@Zip" Dim cmd As New SqlCommand(str, New SqlConnection(strConn)) cmd.Parameters.AddWithValue("@AssoZip", txtAssoZip.Text) ...
Score Difficulty with IIS 6.0 configuration
bprasety - 1 Sep 2006 1:43 AM - 1 message
I have a website that has html and aspx file in it. The site runs fine when i call the html file. However, whenever i call the aspx file, it always return me HTTP 400. The symptom is: http://localhost/default.aspx will always redirected to ...
Score Dynamically generating Javascript
Fernando Chilvarguer - 1 Sep 2006 1:31 AM - 2 messages
Here's my scenario: I have one page, one control, and I want the control to generate a javascript to the page based on parameters passed by the queryString. ASPX Code: .... <head>      <title>TItle</title> ...
Score Will ClickOnce replace a lot of ASP.Net
Tina - 1 Sep 2006 12:28 AM - 9 messages
While ASP.Net is migrating toward more robust presentation by using things like AJAX I am wondering if ClickOnce will errode a lot of ASP.Net presence in Corporate Applications.  I've been reading a lot about ClickOnce and it ...
Score sending email from outlook
KatMagic - 31 Aug 2006 11:35 PM - 7 messages
The following code wrks fine when running from my pc (localhost); but errors when I put the asp.net code up to the production web server.  Theerror I get is System.Runtime.InteropServices.COMException: COM Object ... is either not ...
Score DropDownList won't select item...
JamesW - 31 Aug 2006 11:23 PM - 3 messages
Hi there. Vstudio 2003, IE 6.0 I have an asp connected to an Access database. A DropDownList on the page shows names from the Db. When the user selects a name from the DropDownList I want the selected name ...
Score validation without a page refresh?
ABC - 31 Aug 2006 11:09 PM - 3 messages
Can someone point me in the right direction on how to create a web form where I can perform validation without having to refresh the entire page? For example, I think google uses it, where you can check for the ...
Score What's missing?
KatMagic - 31 Aug 2006 10:42 PM - 8 messages
I took the following code sample from an article about sending email via asp.net.  The error I get says:  System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation So what am I missing?  This is the code: ...
Score is PetShop 2.0 Anti pattern?
pratham - 31 Aug 2006 10:01 PM - 4 messages
Hi, I was seeing code of PetShop 2.0 and find is quite .. differnet design and architecture .. too much of clutter in classes .. order class using and Iorder and Iorder using an orderInfo and same for product, is this good design ...
Score ASP:Button OnClientClick and Server Side Not working together
Opa - 31 Aug 2006 9:35 PM - 3 messages
Hi, I have a asp:button which allows a user to delete a record, and I wish to prompt them with a client side confirmation.  The javascript confirm messagebox does show and the cancel button is fine, however when I click OK, ...
Score IsPostBack going from a 2.0 site to a 1.1 page
Cameron Eckman - 31 Aug 2006 9:08 PM - 1 message
I have a ASP.NET page in a site running in 1.1 framework.  The page takes submissions of forms from other sites on the same server to prepopulate some of the items in it.     If the posting site is ASP or ASP.NET 1.1, the IsPostBack property is ...
Score GridView only showing header
David - 31 Aug 2006 9:03 PM - 3 messages
I have a gridView that sometimes only shows the header and not the detail. Does anyone know how this can happen? Also, if I change the SelectCommand string using code do I need to use Databind() on the SqlDatasource AND the GridView or neither?  Thanks. ...
Score RE: asp:textbox error
fgffg - 31 Aug 2006 8:40 PM - 1 message
tgfgh From [link] Posted via DevelopmentNow.com Groups [link] ...
Score Text Alignment In DataGrid?
Arpan - 31 Aug 2006 7:49 PM - 8 messages
Assume that a database table has the following 4 columns - ID, UserID, Subject & Marks. I am retrieving the records existing in this DB table & displaying them in a DataGrid like this: <script runat="server">     Sub Page_Load(obj As Object, ea As EventArgs) ...
Score send mail via exchange server
tom - 31 Aug 2006 7:08 PM - 1 message
Hi, What's the way to configure a web app and exchange server to allow the web app to send mails via an existing exchange mailbox? The question is : - Do I need to create a windows account and setup the webapp to run under ...
Score display exception one label problem
c676228 - 31 Aug 2006 7:02 PM - 4 messages
Hi everyone, I have a piece of code in sales.aspx.vb like this: Protected WithEvents Message As System.Web.UI.WebControls.Label Try ... ChartImage.ImageUrl = "ChartGenerator.aspx?" + DataStr + "&ChartType=" + drpChartType.SelectedItem.Value.ToLower() + "&Print=" + printVersion.ToString()   ...                 ...
Score How to set which browser to use in Debugging.
Phillip Vong - 31 Aug 2006 6:54 PM - 2 messages
I must be crazy or tired but I can not see where the setting is in VS2005 that says to use IE when I am debugging.  It keeps launching Firefox. Thanks! Phil ...
Score dropdownlist on usercontrol populate host page label
bobbyc13 - 31 Aug 2006 6:41 PM - 3 messages
I am new to vb.net and am getting frustrated and cannot find a post on the subject.  I have a usercontrol (.ascx) with a dropdownlist.  on the selectedindexchanged event of the codebeside of the .ascx page, i would ...
Score Remote Debugging Issue
rlrcstr - 31 Aug 2006 6:35 PM - 8 messages
I'm writing an ASP.NET app, using Visual Studio 2003.  VS is running locally on my laptop, but the web app is running on a remote server.  My laptop is not in the domain.  I do have a domain account.  I had no issue creating the web app on the remote server after authenticating with the domain account, but I can't debug.  It complains that I don't have rights.  My domain account is in the administrators group on the remote machine.  I also have a drive mapped to the remote machine under the domain credentials.  Obviously, I'm logged into my machine with local credentials. ...
Score Action Canceled Message!
e name - 31 Aug 2006 6:01 PM - 4 messages
Hello, I am getting "Action Cancelled" message on an asp page which is running  a process that takes more then 25 minutes. I have "Friendly error message" turned off on browser setting. And what happens is this process processes a huge xml file ...
Score One Subroutine after another
MRW - 31 Aug 2006 5:45 PM - 6 messages
Hello! I'm running two subroutines one after another.  The first subroutine works and does something to a several session variables (just an example), then those session variables are accessed by the second subroutine. I'm noticing however, that it looks like the second subroutine is being ...
Score treeview
lasalsatx - 31 Aug 2006 5:42 PM - 2 messages
What's the best way to create new nodes on a treeview 2.0 and save them to an xml file? Thanks, Victor ...
Score 2.0 Features
vinay - 31 Aug 2006 5:36 PM - 4 messages
Where can i read .NET 2.0 new features list. Any links.. Thnks vinay ...
Score Loading Dynamic User Control Error: "The control must be placed inside a form tag with runat=server"
davidr - 31 Aug 2006 5:26 PM - 1 message
Hi, I have a panel that I load user Control in no problem.  The problem arrises when I do a post back on one of these user controls.  I have button it does a click event.  In this click event I will do some ...
Score Aligning text with Spaces - List box
dinoo - 31 Aug 2006 5:25 PM - 2 messages
I would appreciate if some one could help me on this. I have a list box where I would like to display Company Name and Number by conctaening them. For example - Abc     1 Bii     1 ...
Next »