microsoft.public.dotnet.framework.aspnet Archive - July 2004
Post a message to this list
Messages
Page: 1234567891011121314151617181920
2122232425262728293031323334353637383940
41424344
Help needed: Problem with dynamic generated TableRow and TableCell (8 replies, VIP)
microsoft.public.dotnet.framework.aspnet
Hi, I have a page bill.aspx and its code behind bill.aspx.cs. On bill.aspx I have: Select a month: asp:dropdownlist runat "server" id "lstDate" autopostback "True" / br asp:table runat "server" id "tabBill" / br asp:button runat "server" id "btnSave" text "Save" cssclass "button" / On bill.aspx.cs I got: protected System.Web.UI.WebControls.Table tabBill; protected System.Web.UI.WebControls.DropDow...
Check if item is selected in listbox (3 replies)
microsoft.public.dotnet.framework.aspnet
Hi, I am looking for a method to check if an item (any item) is selected in a particular listbox before deleteing it from my database, however I keep getting errors, The code I have is lbSpecificProgram is a listbox. If (Not IsDBNull(lbSpecificProgram.SelectedItem.Value)) Or (Not lbSpecificProgram.SelectedItem.Value Is Nothing) Then SpecificProgram.DeleteEntryForSite(lbSpecificProgram.SelectedItem...
faster joins (7 replies)
microsoft.public.dotnet.framework.aspnet
I have two databases with in same sql server. I want to know whether a join of two tables with in same database is faster or than join of tables across two databases Thanks!!!
Queries on tables from different data sources (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet
Hi I need to perform two queries in sequence on two identical access tables. The source table is coming from a dataset returned by a web method and the destination table is from a local access table. The queries are; UPDATE [destTbl] INNER JOIN srcTbl ON [destTbl].entry id srcTbl.entry id SET [destTbl].field1 [srcTbl].[field1], [destTbl].field2 [srcTbl].[field2]; and INSERT INTO [destTbl] (field1,...
Catch previous url in custom error page (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi, I have a question on how to get the previous url in custom error file. Here is what I am doing: If someone visit my website with a wrong file name or wrong directory name, IIS will automatically show error 404 page, this was setup by default in IIS web site properties/Custom Errors. I replaced that 404b.htm with my aspx file try to handle this error by myself. the problem is that I can not get...
Help with Enter key and disabling button click (2 replies)
microsoft.public.dotnet.framework.aspnet
I have a javascript function that is fired on the KeyDown event of a textbox. I am adding the attribute to the textbox at page load to run this javascript function. The javascript runs as expected and the text box that is specified in the javascript gets the focus set to it, but my problem is that the default button on the form is being pressed also so once the textbox gets the focus, you barely s...
UML Modeling tools (5 replies, VIP)
microsoft.public.dotnet.framework.aspnet
Looking for a good, cheap (preferrably free) UML modeling tool. Used Jumli in the past, has everything i want but it isnt terribly stable and doesnt look as if they will have a new version anytime soon.
Inserting Records from another table (2 replies, VIP)
microsoft.public.dotnet.framework.aspnet
I need to be able issue a query, then insert each record in the reader into another table. But, when I issue the myCommand.ExecuteNonQuery call, I get an error telling me that a reader is already open and must be closed.. How do i go about doing this? *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it!
Looking for a good book (7 replies, VIP)
microsoft.public.dotnet.framework.aspnet
I was browsing both the Amazon and Barnes & Noble websites looking for some good books but there appears to be *so* many and it's hard to tell which are going to be good or not. I'm looking for one or two *good* books on the subjects of ASP.NET and ADO.NET together. E.g., using ASP.NET on the front end to communicate with a back end database via ADO.NET. I'm hoping to find a mid level type of book...
Important developer Information regarding Windows XP SP2 (4 replies)
microsoft.public.dotnet.framework.aspnet
http://msdn.microsoft.com/library/default.asp?url /library/en us/dnwxp/html/xpsp2websites.asp HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.
Getting the full URL (3 replies, VIP)
microsoft.public.dotnet.framework.aspnet
I need to get the full URL of the current page in ASP. When using Request.ServerVariables("URL") anything after the filename (such as a #section1 to jump to an area on the page or data submitted from a form using the GET method) is automatically removed. I do not know of any keys for the Request.ServerVariables collection that do this, but cannot find any other objects/properties that would be app...
Page_Load not firing 2nd time round? (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi, I have Form1.aspx. Form1 uses client side javascript to launch Form2.aspx when a button is clicked: window.showModalDialog("Form2.aspx?xxxxx xxxx") etc. The first time the Form1 button is clicked the Form2 Page Load (server side) is fired. I close Form2 returning to Form1. Click the button again. This time when Form2 loads there is no Page Load() event. Why doesn't it fire? Thanks, Craig Miles...
Binding two columns to a DropDownList (2 replies)
microsoft.public.dotnet.framework.aspnet
Hi all, I have two columns in a databse that I wish to bind to a dropdownlist, one column as the value (or index) the other as the text value displayed. Does anyone know how I can achieve this? Thank you Simon
Hide Table Question (3 replies)
microsoft.public.dotnet.framework.aspnet
Hello, i am trying to show a table if a certain dynamic text is different from " ". However this is not working. When i i was comparing to "" it was working. Can you please check my code? table visible ' %# dataSetExplicador.FieldValue("DisciplinaComentarios", Container) " " % ' ... Thank You, Miguel
validator SPANS have visibility:hidden. ARGH! (7 replies)
microsoft.public.dotnet.framework.aspnet
I'm using some validators for a form. I'm noticing that it writes the text out to the browser as a SPAN with it's visibility set to none. The problem is that it still takes up space, so I have gigantic gaps in my form. It SHOULD be set to display: none instead. Is this a setting in the control somewhere or is this just a huge oversight on MS's part? If the latter, any suggestions for a workaround?...
Creating functions, components (2 replies)
microsoft.public.dotnet.framework.aspnet
I am new to .NET 2003 and I'm having trouble locating answers. I need to run a initiate a set of classes, or rather load some initial values into an array data originates from a database. Then throughout my application, I will make a functional call which will retrieve the corresponding value based on the key/parameter I send into the function. Please tell me or refer me to a document that describ...
ActiveX fails to install on Xp machine (3 replies)
microsoft.public.dotnet.framework.aspnet
I have an ActiveX control in my web page and the control doesn't install on a XP machine. It works fine on Win2k pro. The warning dialog box does appear on both machine and does allow yes to be clicked. I checked the security settings and they're the same on both machines. NOTE: object tag is used just for this posting because I couldn't use the actual tag due to outlook trying to embed the object...
enableViewStateMac (3 replies)
microsoft.public.dotnet.framework.aspnet
Hi, How can I turn on enableViewStateMac in all pages in the application in web.config rather than each single @Page directive? Thanks, Alan
JScript (3 replies)
microsoft.public.dotnet.framework.aspnet
I heard that there is a way to tell with control called with JavaScript without passing parameters. Does anybody know how it been done? Thanks, Shimon
Shared Dll (6 replies, VIP)
microsoft.public.dotnet.framework.aspnet
I have created a component (called DataAccess) using com service for retrieving data from database. When I reference it to other projects, I notice that it is copied in to the bin folder of each project. And after all the projects run, under component service/computer/mycomputer/com applications, I see DataAccess app, and under it, there are several DataAccess components running, I assume 1 compon...
Watermark in background for Debug build (2 replies)
microsoft.public.dotnet.framework.aspnet
I was wondering what the best way to acheive the following would be: What I would like is for the background of every page in my ASP.NET web project to contain a soft red GIF containing the word "TEST" when the version being viewed has been compiled using the DEBUG build. Once we build a release version and place that into production, we obviously want that "watermark" to disappear. Now, I suppose...
ASP.NET performance issue (18 replies, VIP)
microsoft.public.dotnet.framework.aspnet
Hi all, I have written a very simple ASP.NET page on my website that displays the results of wedding fayres based on the Venue Name selected by the user. However, when the ASP page loads for the 1st time, this takes quite a long while to appear (approx 15 20secs). I understand that the ASP has to generate a process to the IIS server, but is there anyway to speed this initial process up? Any help w...
ASP.NET 2 (3 replies)
microsoft.public.dotnet.framework.aspnet
Anybody know if there's a forum out there discussing ASP.NET 2 along with the many changes that I have heard are coming down the pipe?
double click on datagrid (3 replies)
microsoft.public.dotnet.framework.aspnet
I want to double click on a row within the grid and have it take me to a edit screen for that row. Currently I allow the user highlight a row and click the Edit Button and that takes them to a edit screen, can I have it work the same way if they double click the row? in VB.NET
A Little OT Graphics/Layout (5 replies, VIP)
microsoft.public.dotnet.framework.aspnet
There are thousands of sites that offer to provide site graphic layout/design and trying to select/evaluate them could take many hours/days. I would like to make use of a provider litke that so I can concentrate on functionality of sites that I build. Can anyone recommend where to go for quality (low cost) graphics? TIA Alphonse Giambrone Email: a giam at customdatasolutions dot us
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com