0
votes
What’s the best way to authenticate over WCF?
Why should WS-* be transport dependant?
The whole point of the WS-* specifications is that they are part of the message, and hence transport independent.
…
1
vote
Process raw HTTP request content
Well if the incoming data is in a standard form encoded POST format, then using the Request.Form array will give you all the data in a nice to handle manner.
If not then I can't see any way …
0
votes
How do I cluster an upload folder with ASP.Net?
The best solution for this is usually to provide the shared area on some form of SAN, which will be accessible from all servers and contain failover.
This also has the benefit that you don' …
1
vote
enter key to insert newline in asp.net multiline textbox control
I created a sample page with a TextBox and a Button and it worked fine for me:
<asp:TextBox runat="server" ID="textbox1" TextMode="MultiLine" />
<br />
<br />
< …
2
votes
How do I extract the inner exception from a soap exception in ASP.NET?
Unfortunately I don't think this is possible.
The exception you are raising in your web service code is being encoded into a Soap Fault, which then being passed as a string back to your cli …
0
votes
Postback events from within DataView
Two things to keep in mind when using events on dynamically generated controls in ASP.Net:
Firstly, the controls should ideally be created in the Page.Init event handler. This is to e …
2
votes
How to shortcut time before data after first hit in browser
Wow, 120 user controls, some of which only contain a single TextBox? This sounds like a lot of code.
When you change a library project, all projects that depend on that library project then …
2
votes
Using ActiveDirectoryMembershipProvider with two domain controllers
If ActiveDirectory couldn't handle multiple domain controllers then it wouldn't be a very good technology.
You just need to make sure in your Membership configuration you are pointing to th …
0
votes
Exception Handling in .net web apps
Well at the very basic level you should be handling the HttpApplication.Error event in the Global.asax file. This should log any exception that occurs to a single place so you can review the stack …
2
votes
Button generated for each item in an XSLT file runat server
XSLT can generate pretty much anything you want - but you need to know what you want to generate first.
In ASP.Net I would recommend doing this using the CommandArgument and OnCommand event …
0
votes
DropDownList annoyance: same value won’t trigger event
If you think back to pre ASP.Net days then the only thing that is send with a form submit from a <SELECT> is the VALUE of the <OPTION>. ASP.Net th …
0
votes
How can I use a session in an ASP class file?
If you are trying to share Session data between both classic ASP and ASP.Net then it is not very easy, but is doable.
See the following MSDN page for full details: …
0
votes
How can i run any win.exe from asp.net page?
Request.MapPath takes a relative URL, and returns a local filename (on the server), e.g. Request.MapPath("test.aspx") might return C:\inetpub\wwwroot\MyApp\Test.aspx.
…
0
votes
DataSet.GetXml not returning null results
The problem is listed here in the Microsoft KB article:
http://support.microsoft.com/default.aspx?sc …
1
vote
How to forward EventHandler to parent control?
Assuming a text box called ControlTextBox I have the following code behind my web user control:
public partial class MyUserControl : System.Web.UI.UserControl
{
public event Eve …
