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 2006 > threads for monday february 6

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

Bound NavigateUrl issue
Posted by VB Programmer at 2/6/2006 11:53:14 PM
ASP.NET 2.0..... In my DataList I have a hyperlink like this... NavigateUrl='Shop.aspx?CategoryId=<%# Bind("CategoryId")%>' This navigates incorrectly to here: Shop.aspx?CategoryId=<%# Bind("CategoryId")%> Any ideas how I can fix this? Thanks! ...more >>


SQLDataSource.... binding
Posted by Paul Aspinall at 2/6/2006 11:28:55 PM
Hi I have an SQLDataSource which is bound to a FormView.... I want to put some of the values from the bound record in a label, but this is outside of the template... Some of the templates don't even have this particular field on them all, so I can't use a server side event to populate the ...more >>

Cast QueryString!
Posted by Adam J Knight at 2/6/2006 11:05:38 PM
Hi all, I am having trouble converting query string values to int like so: intValue = (int) Request.QueryString["QuestionID"]; I keep getting the error, cannot convert string to int... How can i do this?? Cheers, Adam ...more >>

I dont want a user to view the page name on the address bar
Posted by ManishShukla_atforum at 2/6/2006 10:13:50 PM
hi I dont want a user to view the page name on the address bar can I do that? Means user can navigate the site clicking on links, but on any page th address bar will only show the domainname/folderName/index.htm -- ManishShukla_atforu --------------------------------------------------...more >>

Ajax - timer
Posted by Peter at 2/6/2006 10:08:01 PM
I have the following code where when user types in the txtName textbox = the program retrieves list of names from a database, the problem is this = occurs after every key stroke. So if I want to look for Microsoft and I = type 'Mic' the program will perform 3 searches with the first one being = ...more >>

Could not load file or assembly 'System.EnterpriseService'...
Posted by Rabbit at 2/6/2006 9:59:21 PM
dear all, I was ok to use Visual Studio 2005 built-in Web Server to develop my web application. When I deploy it onto IIS, the compliation prompts following: >>>>>>>>>>>>>>>>>>> Error 1 Could not load file or assembly 'System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKey...more >>

Cannot apply indexing with [] to an expression of type 'object'!
Posted by Adam J Knight at 2/6/2006 9:47:36 PM
Hi all, I am getting the following error with this if statement.. if(e.Item.DataItem["QuestionType"] != 2) { } //error Cannot apply indexing with [] to an expression of type 'object' Can someone fill me in on what is happening? Error occurs in a datalist's ItemBound ...more >>

Database/profile Hey here's a puzzle
Posted by icurfmn8 at 2/6/2006 9:27:27 PM
How do I click a button, have the site go look up the a phone number, and save the data in the Profile ? I have profile enabled. I've really thought hard about how to ask this question. I've really tried and tried to ask it so I get a real answer and not a harrassing one. Help please. ...more >>



Newbie Question about master page in ASP.NET 2.0
Posted by Alphonse at 2/6/2006 9:02:37 PM
Hi, I'm a newbie in web programming. I got few questions about master page in ASP.NET 2.0 I've made a master page with a navigation menu, a header, a footer in it, then I use it in pages. Whenever the menu is cliked, it navigate to other page (& so on). It works fine, but whenever I navigate to...more >>

Forgive me, I'm trying
Posted by James Woody at 2/6/2006 8:42:43 PM
Hello friends. I would like to pull the value of one field from a local database and display it on a page. I spent an hour looking for the solution. I feel that is more than enough dues to pay to the computer in the sky. I don't want to use a dataReader or a sqlDepleter or a gridViewRepea...more >>

Usercontrols src folder is virtual and undesired.
Posted by Edwin Knoppert at 2/6/2006 8:05:54 PM
I generate code, want to set the SRC in a more dynamic way but it's not allowed to insert server side commands. Reason is that i have problems on different servers where the app's rootfolder differs. <%@ register TagPrefix="forms" TagName="form1_" Src="~/forms/form1.ascx" %> Is there a so...more >>

Newbie survey: just a scripting language?
Posted by Brian at 2/6/2006 7:25:25 PM
Well, here's the background. I'm coming from the world of ColdFusion, where page layout was an entirely manual process. Now I'm looking at .NET for the first time. I have a great background in OOP, dhtml, css, etc. But not ..NET. I'm tasked with revamping some very primitive looking ASP...more >>

date problem
Posted by yoshitha at 2/6/2006 7:16:44 PM
hi db : sql server 2000 lan : C#.net(ASp.Net) in my database table there are 2 fileds of data type datatime. in field 1 i'm storing date in field 2 i'm storing time. in my textbox date is in the format of 2/12/2006 and i'm inserting as it is. and time is in teh fromat of ...more >>

Expert Opinions - Doc Obj
Posted by JJ at 2/6/2006 6:54:07 PM
Hi, I am working on a proj and was thinking of creating a Document object that would hold filepath and doc name. And in this Document obj. when page that is using it loads I would call a document obj method to initialize the following javascipt: <code> if (new FileInfo(String.Format("{0}...more >>

Loading/Updating User Controls... how?
Posted by Tarun Mistry at 2/6/2006 5:19:19 PM
Hi there, using the following code i see it is possible to load a user control dynamically and set its properties. Control c1 = LoadControl("MyUserControl.ascx"); ((MyUserControl)c1).BackColor = "beige"; Page.Controls.Add(c1); However, If i already have a user control on my page, as define...more >>

using anchor with DataList (asp.net 2.0 with VB)
Posted by sck10 at 2/6/2006 5:14:30 PM
Hello, I have created a photo gallery of thumbnails using the code below. So far, I got the pictures to show, but now I need to figure out how a viewer can click on the thumbnail and it opens the bigger picture. The bigger file is the same name as the file stored in the array minus the "_mini"....more >>

Should I use Page_Init or OnInit method.
Posted by harry potter at 2/6/2006 4:50:55 PM
Hi, Are there any reasons to use OnInit or Page_Init method to invoke some code when the Init event is triggered, if at all. Or are they both just the same? -S. ...more >>

Creating Hyperlinks
Posted by Garth Wells at 2/6/2006 4:38:08 PM
used the following "classic ASP" approach to build a dynamic menu, but would like to know the proper way to implement the same functionality using a .Net technique (e.g., placing the code in the .cs file and dynamically building the hyperlink controls). The controls need to appear within the sam...more >>

Stripping out punctuation marks
Posted by dew at 2/6/2006 4:34:28 PM
Is there an easy way to edit a string so that only alphabetical characters and numbers are allowed? Thanks for your help. ...more >>

having beginner troubles with asynchronous calls in asp.net
Posted by don_spam NO[at]SPAM runwithscissors.org at 2/6/2006 4:28:32 PM
Hi all, sorry if this is an over simple question but google isn't coming through for me. So I have a class that processes the data in an excel file, entering the info row by row into our database. The public interface is as such: public class ExcelToQueueEngine { public ExcelToQueueEngine(st...more >>

How to get checkbox values form a repeater (looping only finds the first)
Posted by Alan Silver at 2/6/2006 4:24:26 PM
Hello, I have a repeater that has code like this... <ItemTemplate> <asp:CheckBox ID="chkDelete" Text="" RunAt="server"/> .... other stuff goes here </ItemTemplate> There is a button below the repeater. When clicked, it is supposed to loop through the repeater items, building a list of ...more >>

How to look system generated codes in VS2005 ASPNET project
Posted by Charts at 2/6/2006 4:06:29 PM
I recently upgraded to VS2005. I noticed that in ASP.NET project, the system generated codes are missing from default.aspx.cs file. While I used to be able to see it in VS2003 project. Now, if I added a SQLSource control for example, I no longer can see system generated code, which could be ve...more >>

Insert data into database problem
Posted by c676228 at 2/6/2006 3:59:27 PM
Hi all, I think I have data type problem when I tried to insert data into sql server 200. The erroe message is like this: system.invalidcastexception data type DFlage char(1) in sql 2000, DMI is depdent middile initial, char(1) in database Sex is char(1) in database, but in web page, I ...more >>

sqlstransaction problem
Posted by c676228 at 2/6/2006 3:43:28 PM
Hi all, I have placeOrder function which look like the following: Protected Function PlaceOrder() As Boolean Dim myConnection As SqlConnection = New SqlConnection(ConfigurationSettings.AppSettings("ConnectionString")) myConnection.Open() Dim myCommand As SqlCommand = m...more >>

How to reference custom control from App_Code folder?
Posted by Alan Silver at 2/6/2006 3:41:35 PM
Hello, I have a custom control that is inside a DLL. Until now, I have had the source file for this DLL in a development folder on my machine, and I've been compiling it using csc on the command line. I reference the control in the DLL on a master page by adding the line to the top of the f...more >>

Request object does not handle globalization?
Posted by Mark at 2/6/2006 3:28:23 PM
Assume you have a simple HTML form that submits its form results to a .aspx page. The receiving .aspx page processes the values sent by the form. If the form data contains an accented character (ex., Ángel with an accent over "A"), the REQUEST object appears to loose the globalization, and n...more >>

How have dropdown refer to Gridview?
Posted by VB Programmer at 2/6/2006 2:37:54 PM
ASP.NET 2.0.... Building a shopping cart application. 2 tables: Categories and Products I have a Gridview representing Products. When the admin selects a row a DetailsView is populated. In my DetailsView I have a dropdownlist which pulls Categories from the Categories table. I want ...more >>

SQL Server 100MB
Posted by Kevin Lawrence at 2/6/2006 2:32:32 PM
Hi Anyone know how much 100MB is in SQL Server 2000? Is it a lot? Thanks Kev ...more >>

Session_Start does not appear to fire
Posted by jcode at 2/6/2006 2:30:22 PM
I have an ASPNET application that has worked correctly on couple of servers. I have just deployed it to another server and cannot resolve an issue. It appears as if the Session_Start is not firing or session state is not being maintained. First lines of Session_Start: string loc = "Load...more >>

radiolist
Posted by CsharpGuy at 2/6/2006 2:15:31 PM
I have a radioList with 3 radio buttons in it. The buttons are seleced based off of the data coming back from SQL. On my web form the user can change the radio button selection. Now, when the user makes a new selection in the radioList, its not returning the new selection its returning the sel...more >>

creating thumbnail from image
Posted by Daves at 2/6/2006 2:09:45 PM
hi, I've been using the system.drawing.image.GetThumnailImage() to create a thumbnail from an image a user uploads to web. I save the result as a gif image. Works fine except that the color resolution is awkard, seems like a 16 bit color image. How can I change the target color depth? ...more >>

VS 2003 Remote Debugging on Win2K
Posted by Chris Raudabaugh at 2/6/2006 1:56:29 PM
Error Msg: Error while trying to run project: Unable to start debugging on the web server. Access is denied. After many hours of scanning MS KB's, newsgroups, and msdn trying all of the suggestions, I'm still stuck. I've attempted to implement all the combinations of users, access rights,...more >>

The request failed with HTTP status 502: Bad Gateway
Posted by muradmeghani NO[at]SPAM gmail.com at 2/6/2006 1:55:39 PM
Hi: I have a running application built in VS2003 and using Net Framework 1.1. I recently upgraded to VS2005 and converted the project to use 2.0 Framework. My call to the web service gives me "The request failed with HTTP status 502: Bad Gateway". Is there any special setting I need to do w...more >>

programmatically set which validation groupS to use
Posted by ibiza at 2/6/2006 1:51:55 PM
Hi all, I have a small question concerning asp.net 2.0 validation groups. I have this (simplified) situation : Name Value _____ _____ |_____| |_____| _____ _____ |_____| |_____| _____ _____ |_____| |_____| So I have 6 textboxes, that goes in pair b...more >>

Authentication timeout = no?
Posted by WebBuilder451 at 2/6/2006 1:36:55 PM
Hi, One i forgot how to do. I want to set the time out to never on authentication. .... timeout="60"> is my current how do i set timeout="never"> thanks i know this is an easy one but got a writer's block today. -- thanks (as always) some day i''m gona pay this forum back for all the he...more >>

Spawn a process that runs under an Impersonated user
Posted by Grant Holdom at 2/6/2006 1:36:34 PM
Hi, We are trying to kick off an executable from an asp.net page. We have followed article 889251 "How to spawn a process that runs under the context of the impersonated user in Microsoft ASP.NET pages" (including adding the impersonated user to the "Replace a process level token"). Whe...more >>

ActiveX control updating webpage
Posted by poppy at 2/6/2006 1:36:22 PM
I have an activex control on my webpage which fires off an event every ten seconds using the timer. When the event fires in the activex control I need to update a textbox on the webpage using clientside javascript. I cannot carry out a round trip to the server every ten seconds. How can...more >>

Encrypt String
Posted by Genaro Sanchez at 2/6/2006 1:35:45 PM
Hi Group, How can I encrypt a string in .NET, using .NET References. thanks a lot. Genaro ...more >>

Page html output not completely rendering
Posted by Brian Stanforth at 2/6/2006 1:35:06 PM
I have had this problem at two different companies. At random pages will render incomplete html. The output html just terminates. There are no errors recorded and I have been unable to figure out the problem. Does anyone have any ideas?...more >>

Login Control LayoutTemplate Enter Key Event
Posted by Tyler Carver at 2/6/2006 1:34:22 PM
I'm using the Layout Template for the Login Control. I've included all the neccessary controls on the page and everything is working nicely except hitting the enter key on any of the textboxes will not fire the login event. This functionality is included if I am not using the Layout Template...more >>

Proper Case
Posted by Joe at 2/6/2006 1:33:59 PM
Hello All: Deos anyone know of a simple way to convert a string to proper case? TIA, -- Joe...more >>

Login checking inline... im confused
Posted by Tarun Mistry at 2/6/2006 1:30:59 PM
Hi everyone. I want to perform some login checking in one of my webforms to decide on what content to show, is this possible? Should i be doing this differently (btw im a new .net programmer moving from PHP). So depending on the value of x and y (defined in my code behind) i want todo somet...more >>

Listbox not refreshing
Posted by P K at 2/6/2006 1:30:40 PM
Hi, I have two listboxes on my form. One has a list of available values while the other is a list of selected values. So I select a value from list 1 and add it to list 2 when "add" button is clicked. I can also select a value from list 2 and remove it on clicking "Remove" button, which...more >>

Creating a Embedded HyperLink Function
Posted by SAL at 2/6/2006 1:29:37 PM
I would like to create a VB.net function, that builds a dynamic hyperlink using System.Web.UI.WebControls.HyperLink, but I can not find any examples on how to generate a dynamic hyperlink. Has anyone done this before? I do not want to dynamically create my hyperlink on an ASP page, but ra...more >>

.NET IsNumeric function
Posted by Joe at 2/6/2006 1:27:20 PM
Hello All: Does anyone know how someone would check for a numeric value in .NET? In VB6, we used IsNumeric. What's the .NET equivalent? BTW, I know that I can harken back to IsNumeric. I'm trying to purge any trace of VB6 from my code. TIA, -- Joe...more >>

How to customize web part title bar?
Posted by Zhenzhong Xu at 2/6/2006 1:26:54 PM
I am using ASP 2.0 and trying to put a image in the web part title bar instead of using a text title. Is there any way to get this done? Thanks in advance. Zhenzhong...more >>

Static Functions in Multi-user web app
Posted by WebMatrix at 2/6/2006 1:26:32 PM
Is there any performance considerations or any other concerns about having a Class with private constructor and all static functions? One particular function in question creates a few new instances of COM objects (through COM Interop), and makes lots of calls to these unmanaged COM objects. ...more >>

Validation problem
Posted by tshad at 2/6/2006 11:31:08 AM
I have been having some issues trying to get validation to work. On most of my pages, I have no problem. But I have a page that has 4 validation objects and none are displaying an error message, but I have this code: trace.warn("Before Test on Page.IsValid") if not Page.IsValid then Ex...more >>

Webpart zone in master page?
Posted by Mats Lycken at 2/6/2006 11:14:07 AM
Hi, I have a question about webparts in master pages. If I add a webpart to a webpartzone located in a master page will that webpart be available to all .aspx pages that uses that master page or just the page I added the webpart from? Is there some way to control this behaviour? Thanks in a...more >>

ASP Table webcontrol and the IDE Designer
Posted by Wade at 2/6/2006 10:49:33 AM
Hi all, Has anyone else noticed, in VS.NET 2002 and 2003, that if you create ASP.NET tables and add webcontrols to them you cannot select the webcontrol when you're in design mode? However, it will work if you use standard htmlcontrol tables. What gives? Is this resolved in VS.NET 2005...more >>

Legalities
Posted by Kevin Lawrence at 2/6/2006 10:40:40 AM
Hi all I will soon have a site that allows people to register and you are capturing their name, email and some information about their interests. What legal issues does this raise? I may expose "certain" information to other registered users, but only at the consent of the registering use...more >>

OPENFILEDIALOG ??
Posted by De kessé at 2/6/2006 10:18:52 AM
Im trying to do this from ASP.NET and it does not work. Dim ofd As New OpenFileDialog Openfiledialog is not there. But I can find it in the object browser. In my web config i can see this <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C56193...more >>

Offtopic: web sites submission? Don't remember how
Posted by Carlos Albert at 2/6/2006 10:08:20 AM
Hello everybody, There was some tools to make an automated site submition to google, yahoo, altavista, etc. Also there was some way to put "keywords" in your homepage to help the robots. Can't find the info though, seems I lost it in my hard drive =P Would anybody give me a hand at this...more >>

Exception handling
Posted by tshad at 2/6/2006 9:38:07 AM
I am trying to set up an exception logging and have some code from a book I am using. It all seems to work except for the ID I am setting up for handling Exception Chains (I am only getting one entry per error - so I don't know if the Chain is even working). I have a field in my database...more >>

Only elements allowed
Posted by Jim McGivney at 2/6/2006 9:31:51 AM
I get the following error. Asp.net does not like my web.config file - line 108. Any suggestions would be appreciated. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details ...more >>

Preferred method to request a page?
Posted by Mutley at 2/6/2006 8:36:51 AM
Hi, I have written an HttpHandler to process page requests for a custom file extension. Other considerations aside which of the following 3 options is the most efficient or preferred method of requesting a page: 1. GetCompiledPageInstance + ProcessRequest 2. Response.Redirect 3. Server.Tr...more >>

Creating a web site on machinie and then working on it on another.
Posted by UJ at 2/6/2006 8:20:13 AM
I've got a web site I've developed. I've deployed it and it works fine. My boss wants to be able to bring it up and look at it through Visual Studio. What do I need to do so he can work on it? He doesn't need the absolutely latest code so I can copy it to his machine so he can look at it (he's...more >>

How to compare values of two objects in C#
Posted by Sukh at 2/6/2006 8:14:15 AM
Hi, I have two object of same class but I want to check if there is any value different b/w both object or not Is there any way... Obj1.Equals(obj2) is not working for this. Its in C# Thanks. Sukh ...more >>

reading and writing to dataset
Posted by Paul at 2/6/2006 7:45:28 AM
Hi I have an application and would like to change the value of a dataset in the code behind. Just wondering if this is possible and the best way to do it? I will need to both read and write to the dataset before using it in a crystal report, thanks. -- Paul G Software engineer....more >>

Version Control
Posted by unicomp at 2/6/2006 5:43:11 AM
Has anyone tried Yore Version Control? I like the price, but it's pretty new. ...more >>

CType(x,Integer) vs. Integer.Parse(x)
Posted by Joe at 2/6/2006 5:23:27 AM
Hello All: Does anyone know the difference between CType(x,Integer) vs. Integer.Parse(x)? Is there a performance advantage to one or the other? TIA, -- Joe...more >>

New Window Issue
Posted by JJ at 2/6/2006 5:00:37 AM
Hi, I Need to open up new window in my app but also don't want to cause the page that called for the new window to cause a postback. How would I do this? I would have a link button on first page that would kick off a new window but don't want a postback to occur. code tid-bits please. What I ...more >>

Simple databind for Label?
Posted by typingcat NO[at]SPAM gmail.com at 2/6/2006 4:27:22 AM
It was very easy to display the data of an 'AccessDataSource' using GridView. But is it possible to display it with Label? I found that there's no DataSourceID attribute for Label, so I think it might be like, label.Text=accessDataSource.Select(...); Am I right? But I don't know how to use ...more >>

Localizable java script
Posted by Gawel at 2/6/2006 3:00:38 AM
Hajo, I have app.js file where I store all my java script functions. I am wondering how to localize it. I can create second file like app_de.js and switch these two guys manually but maybe there is other possibility that allows me preserve one file? thanks Pawel Pabich ...more >>

file download with WriteFile method gives an empty file ?
Posted by Eric B at 2/6/2006 2:59:02 AM
Hi. I've got this code in my download page Page_load() method, but all I got in the end is an empty file on client side... any clue ? string filename="testfile.pdf"; Response.Clear(); Response.ContentType = "application/octet-stream"; Response.AddHeader("Content-Disposition", "attachmen...more >>

App_Code folder
Posted by Filip De Backer at 2/6/2006 2:56:03 AM
Hi everyone, I've created 5 (different) asp.net 2.0 applications. Each applicationfolder contains an App_Code folder. Is it possible to set the App_code folder in de root of the website? Because the purpose of the App_Code is reusable classes, it isn't very productive to copy the class files...more >>

DataAdpater Without SqlCommand
Posted by Billy at 2/6/2006 2:55:28 AM
My Busn tier returns a DataSet and I want to fill a DataAdapter in the presentation layer with that dataset. Problem is that if I create a DataAdapter in the presentation layer i need to specify a SqlCommand with it, but i don't want to, i just want to fill it with the DataSet from the Busn T...more >>

CS0246: The type or namespace name 'TemplateContainer' could not be found
Posted by robseflops NO[at]SPAM gmail.com at 2/6/2006 1:36:49 AM
Hi! I have a Asp.net 2.0 application that uses a masterpage. It works fine on the development machine but when I move the app to a Win 2003 server thinks go wrong: When I navigate to a page that uses the masterpage I get the CS0246 error: Compiler Error Message: CS0246: The type or namespac...more >>

Help on Login control for authentication in .NET 2.0
Posted by Dina at 2/6/2006 1:05:15 AM
Hi, I'm a newbie trying out my first ASP.NET 2.0 website. I'm trying to use the Login control to authenticate users. I want the control to make use of an existing table, containing user details, that is in SQL server 2000 that is available on a remote machine. I'm not able to achive this ...more >>

control events
Posted by Andy at 2/6/2006 12:57:29 AM
Hi there, I have been trying to find out more information about the events associated with controls such as the combo boxes, radion button lists and text boxes etc. Can anyone suggest a good site / book which describes these in detail? The reason being I am trying to replicate an Access adp on...more >>

printing problem
Posted by uto at 2/6/2006 12:00:00 AM
i'd like to know about printing of webpage ListView tablele this listview is like resume table forms so i have to print as this page of table type. may be listview count is about 50. how can i print this pages ...? just want to use javascript.. can i solve this? ...more >>

WebApplication restarts every time while I request any page.
Posted by Dmitry Savchin at 2/6/2006 12:00:00 AM
I have web application with web-service in root catalog of virtual folder and some web-forms in sub-catalog ("Config"). Authentication configured in web.config file as "form"-mode. File web.config placed near web service in root catalog. When I try to request any page then Application_Start m...more >>

[ASP.NET1.1]Should I kill the ASP.NET worker process after recompiling my ASP.NET webservice?
Posted by Andrea Raimondi at 2/6/2006 12:00:00 AM
Hello. Creating my ASP.NET webservice, if I recompile it, do I need to kill the worker process to allow my modifications to be seen? Or does it take the newly compiled DLL just fine? TIA, Andrew...more >>

Image Button Not Working With DataGrid ItemCommand?
Posted by Adam Knight at 2/6/2006 12:00:00 AM
Hi all, I have a datagrid like so: <asp:datagrid id="dgContractors" OnItemCommand="dgContractor_ItemCommand" Runat="server" Width="920"> Shortened for brevity.. It contains a template collumn like so: <asp:TemplateColumn HeaderText="Superintendent"> ...more >>


DevelopmentNow Blog