Search Results

0
votes
1answer
143 views

Finding the File Version of a COM DLL using ASP.NET

I have a software diagnostic page on which I would like to list the File Version information of a couple of COM DLLs. The page is running under the normal, restricted ASP.Net account (NETWORK SERVI …
0
votes

How to access UserId in ASP.NET Membership without using Membership.GetUser() ?

Have you tried using System.Web.HttpContext.Current.User.Identity.Name? (Make sure to verify that User and Identity are non-null first.) …
1
vote

< ajaxToolkit:TabPanel - would like to set “focus” on a different tab

Set the TabPanel's ActiveTabIndex to 1 in your Page.Load handler: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) TabPanel1.ActiveTabIndex = 1; } …
0
votes

Why does global.asax change sql connection?

Check to see if the myapp.Global class accesses either the Membership, Role, or Profile providers; the default settings for each use a local SQL server connection. …
1
vote

How do you specify stylesheets for spcific media using ASP.NET Themes?

You can declare the media type inside the stylesheets. For example, printer.css: @media print { /* Print CSS rules here */ } …
2
votes

ASP.NET application exhibits strange behaviour through firewall

If they're at all tech-savvy, I would have them download Fiddler or something similar, capture the entire HTTP session, and then send you the saved session. Maybe something in there will stick out. …
0
votes

Is there a simple & extendable Data Class for ASP.NET?

Your question is too vague. What do you mean by "data class"? What do you want/need it to do for you? Are you looking for something like DataContract? …
2
votes

A clean way of generating QueryString parameters for web requests

Use HttpUtility.ParseQueryString, as someone suggested (and then deleted). This will work, because the return value from that method is actually an HttpValueCollection, which inherits NameV …
1
vote

Why does visual studio .net 2008 lose debug ability after adding global.asax file?

Post the entire contents of global.asax and global.asax.cs (if it exists). My guess is that the Application directive at the top of global.asax has a compiler directive or something in it that's ca …
3
votes

Asp.NET Server Control Postback

Override the CreateChildControls method and create/add the button (and register the handler) in that method. Using OnInit/OnLoad to create controls like this is incorrect and will lead to i …
1
vote

Setting Membership Store Passwords

I've used a variant of #1 in a live application. It worked great, users never noticed the change as far as I was aware. A couple of refinements: You don't need to prompt them …
0
votes

Is it ok to use ticks to pass datetime using ticks between pages of an application

Given that Ticks is defined as the number of 100-nanosecond intervals that have passed since 12 midnight, January 1, 0001, I can't see there being any functional issues, as long as you either conve …
1
vote

Migrating asp.net website from IIS6 to IIS7 - Debugging differences

For #1, you need to turn off the "Ping Enabled" setting in the Advanced Properties for the application pool. Otherwise, if you sit on a breakpoint, the process can't respond to IIS's ping and it be …