1
vote
Can I abandon an InProc ASP.NET session from a session different than one making the request?
No can do.
http://forums.asp.net/p/416094/416094.aspx#416094
…
9
votes
What is the connection string for odbc connections?
A cool trick to building connection strings is to right click on your desktop, choose "new text document" - this will make a temporary notepad .txt file. Rename it to .udl and then double click it …
0
votes
.NET (web) How to execute some code after all events are handled?
Check out the OnPreRender event in the page lifecycle.
-Oisin
…
1
vote
Select a ListItem from DropDownList using a Linq Query
My vb.net is shaky, (c# guy) but try:
Dim qry = From DirectCast(i, ListItem) In ddlOutcome.Items ...
I may have the DirectCast syntax wrong, but you know where I'm …
1
vote
Help - Enabling ASP.NET for IIS7 on Vista is failing.
Try running SFC /scannow from a command prompt, and then examine the log at %windir%\logs\cbs\cbs.log to see if it made any repairs to the .net framework (which is conside …
1
vote
An easy way to run an ASP.Net application at home?
Try VIsual Studio 2008 Express Web Developer. It's free, and better than many that are not. It comes with a built-in web server so you can compile,deploy and test immediately. No need for IIS.
…
2
votes
Common code used by multiple ASP.Net Applications
If all the apps are on the same virtual server, consider placing the shared assembly in the GAC. This allows you to diverge versions should the need arise, and keeps everything in the same place as …
0
votes
Debug .asp pages with visual studio 2005
Possibly not what you want to hear, but vs2005 doesn't support this. It was re-added into vs2008. Perhaps one of the free vs2008 express edtions might get you out of this hole?
…
0
votes
ASP.NET CSS on PostBack in IE 7 Not Working
Have you verified that the tag is still on the page after a postback? I seem to remember something about difficulties manipulating the HEAD tag reliably.
…
0
votes
How to prevent repeated postbacks from confusing my business layer
If I was to be brutally honest, I would say that it sounds like you're the one confused about web postbacks, not your application (that's if you're the one who wrote it). ;-)
That said, in …
0
votes
Subdomain to point to subdirectory of main site?
You're looking at two methods for this:
URL rewriter
Server.Execute method
The first is a httpmodule that silently redirects the request without changing the …
-2
votes
Why is the data from my html form not submitting?
You cannot just aribtrarily add text boxes client-side without having the corresponding server-side controls ready to read the data from the postback. However, you should be able to read the raw da …
5
votes
How do I use OpenID in my new ASP.NET website?
Dude, you're not alone. OpenID confuses everyone except the people who designed it, and even then, I'm not so sure it doesn't confuse them either since there are multiple OpenID providers and sligh …
4
votes
Problem- Event handler called only on second click
OnInit happens before LoadPostData is called, and this is the reason it appears to work on the second click. What's actually happening is that you are handling an event from a previous pos …
0
votes
Disable a button on click
You need to be careful that the postback occurs before you disable the button through client script. This is a common gotcha with ajax and input boxes. Disabling an input box prevents the data from …
