| A frustrating problem. Help greatly appreciated! :-( (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, I'm hoping someone can help me witht he following problem: I have a fairly simple page that has a sort form and a button for adding the forms details to an arraylist. When the button is pressed, the information from the form needs to be added to a list in the bottom half of the page. The problem I am having is to do with persisting the array and displaying the list. When the button is pressed ... |
|
| When the connection to the database will be destroyed? (7 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, I want to create a class (named "classA") in which a connection to a database will be built. In another class (named "classB"), an object of the "classA" is created and data are retrieved from the connection of the object of the "classA". But in C#, we never need explicitly destroy an object, so when will the connection to the database in the object be disconnected? I am using C# to write the ... |
|
| focus problem (5 replies) |
| microsoft.public.dotnet.framework.aspnet |
| We are working on a large C# .NET application and have recently run into this very strange problem on two different pages created by two separate developers: The pages contain multiple textboxes, dropdowns, etc. there is one textbox.focus() javascript on the pages inserted via the page.RegisterStartupScript everything works fine and focus works correctly on most of the postbacks on the page EXCEPT... |
|
| <% %> tags (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| I have following code in my asp .net page : table tr td X:hyperlink href "page( % pageID% )" /td /tr tr td a href "emc.asp?pageID % pageID% " /td /tr /table How come that in the first control (X:hyperlink) the value % pageID% is NOT replaced, while in the second control (the a tag), % pageID% is replaced by its value. Jill |
|
| .aspx.resx file (2 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| I have a sompage.aspx.resx file, but it shows as a separate file in VS.NET 2003 Pro rather than as a "child" of somepage.aspx and somepage.aspx.cs. Any ideas on how to get it back where it is supposed to be? Thanks! Mark |
|
| sub windows, popups, passing data (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| I have a Windows application that I am converting to the web. In Windows it uses many dialog popups to OPTIONALLY gather information IN ANY ORDER and return it to a central window. The central window processes the selected information. I considered using sub windows and javascript, but most of these dialogs return objects like datarows. (Is there any ASP .NET support for subwindows?) I considered ... |
|
| datagrid question (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| I am trying to do an amortization table in a datagrid. I am doing the calculations in the code behind. How can I populate the data in a datagrid? David Fetrow Helixpoint LLC. davef@helixpoint.com |
|
| C to VB. Can you please help me in solving this? (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hello, i am working in an ASP.net / VB web site and i need to create a calendar which displays events from an Access database. I found exactly what i want in a simple article with a small code in Macromedia's web site: http://www.macromedia.com/devnet/mx/dreamweaver/articles/aspnet calendar 04. html However, the code in this article is in C#. For the past 3 weeks i have been translating it to VB. ... |
|
| Compatibility of ASP.Net asn nonMS browsers (9 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| I have been told that the site I set up using ASP.Net is non functional when accessed by Netscape and Mozilla browsers. Is this a known issue or have I done something stupid? TIA. Al Reid "It ain't what you don't know that gets you into trouble. It's what you know for sure that just ain't so." Mark Twain |
|
| aspnet.exe crash (4 replies) |
| microsoft.public.dotnet.framework.aspnet |
| if an aspx page call server.execute on itself, the aspnet.exe process crashes. i know this should not happend or is not a good programming habbit (i found it out by mistake), but i also know that running a method on a managed code class like asp dot net server utility object should not cause the aspnet.exe process to crash. what about exceptions etc... ? |
|
| ASCX (5 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| Hi, I have notice some file with extension *.ascx Could someone tell me more about it. I am currently got a fully done web project, but the files with extension *.aspx Is there any way to compile such file to *.ascx. Or perhaps someone could tell me how to create *.ascx some useful reference would be great if got. thank you |
|
| add user to group metaphor (2 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| Has anyone seen a metaphor for managing group membership? I'm primarily interested in the user interface. I've looked at what windows has done in the Computer Management console. I was hoping someone would have something more web based. Thanks, Craig |
|
| Access network resources from aspx page (4 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Is it possible to access files on the network from an aspx page? I need to read a bunch of word docs. that are stored on the network. Thanks |
|
| Open default.aspx without toolbar or address bar (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi all, how can I open the default.aspx and disable/hide the toolbar, address bar, statusbar (IE) ? Thanx Eric |
|
| Table cell question.... (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| In my ASP.Net application, I have the following code in my html part of the code tr td width "100%" align "right" pre % strRouteRemark % /pre /td /tr I am populating strRouteRemark variable in the page load. If the text in the variable is too lenghty, instead of showing the text in the next line, data is getting displayed as a continous line. How to make sure that the data will get displayed in th... |
|
| I.E. blows after running my app (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| When I kill the browser window while using my ASP.Net application I get an Application error: "The instruction at "0x01503e8d" referenced memory at "0x01503e8d". The memory could not be "read". This just started happenning. It doesn't seem to matter what pages I exercise. The only thing I have done differently lately was add an SQL Server Reporting Services project to my solution. It only happens ... |
|
| Development pc (3 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi all, what OS are most of you using for development on your pc/laptop, 2000pro, 2000server, XPpro, 2003server ? Greetings Eric |
|
| adding datarows to tables and datatables to datasets (2 replies) |
| microsoft.public.dotnet.framework.aspnet |
| I thought this was weird?? is this a bug in framework 1.0??? (1.0 is the version I am running against) dim dtAll as new datatable dim dtTmp as datatable dtTmp LoadDataTable("select top 100 from table...") for i 0 to dtTmp.rows.count 1 ''''ERROR ON THIS LINE''' dtAll.Rows.Add(dtTmp.rows(i)) next ERROR: Datarow already belongs to another datatable I get the same error with adding datatables to datas... |
|
| Template file (3 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi!! Can I have include files in ASP.NET? I want to create a huge site in ASP.NET and I was wondering if I could simplify the development time by using include files (such as header, footer, menus, etc). How would I go about creating these include files? Thanks much in advance, Teofilo Homsany |
|
| SMTP Email Address - Exchange 2000 - ASP.NET (4 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| Hi All I am running a ASP.NET Web form on which I ask the user to complete a new employee's name, surname, SMTP email address and some other fields... I need to verify that the SMTP email address exists on the company exchange server before the form can be submitted for further processing. In ASP I have used CDO 1.21 to logon to a mailbox, whereafter I have filtered the GAL with the name and surna... |
|
| How is this done? (3 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| I'm sure this has been covered before, but I'll be damned if I can find it. So if someone could point me in the right direction I'll be grateful. I have a contact page, where the user enters their email address some other data, a message, etc, then they click "Send" my page then gathers all the data and uses SmtpMail to email it to an email address I have set up. (No, at this time I don't want to ... |
|
| Newbe: Howto post values between webforms? (3 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi there, I'm a new to this ASP.Net and is trying around. I know how to use $ POST and $ SERVER ['varablename'] to retreive values between webpages, sendpage.php and receivepage.php But I don't seem to figure out how it works in ASP.Net (use language VB)???? I've got a default .aspx page that I've added a asp:textbox and asp:button, and in the button click added .aspx.vb event inserted the codesni... |
|
| Change Format (3 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| Hi I have a datagrid control that I want to be able to change the source SQL statement for, I presume I can do this by setting the datasource property and calling DataBind(). But how can I change the data formatting expression property of a bound column at runtime, from within the C# code of my aspx page? I'm quite inexperienced with this so bear with me. Thanks |
|
| Detecting the locale of the user? (3 replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hi all, In a web application, is there a way to detect the locale of the user (for example, by sniffing some info off the navigator) and using that locale to display the information on the site to the user? Any information regarding how to do this would be greatly appreciated. Eric. |
|
| SQL Session Management (2 replies, VIP) |
| microsoft.public.dotnet.framework.aspnet |
| If I use SQL Mode for Session management in ASP.NET, is it possible to use a "Custom" database instead of the default ASPState database? I am on a shared SQL server and if numerous users want to use SQL session state, there will be serious security issues! thnx |
|