0
votes
1answer
31 views
How do I get the XMLSerializer to add namespaces to attributes in nested objects?
Hi,
This is what I get:
<ex:test soap:mustUnderstand="1" xmlns:ex="http://www.example.com/namespace">
<ex:A Type="lorem">ipsum</ex:A>
</ex:test>
…
3
votes
Unit testing XML Generation.
Validate against XML schema or DTD, also check key that nodes have the values you expect.
…
0
votes
Why does attaching an eventhandler in Javascript stop my server side event firing?
If your Javascript event handler cancels the event bubbling, the event handler inserted by asp.net that calls your serverside code will not run.
I'm not familiar with asp.net auto-inserted …
2
votes
Is it possible to implement properties in languages other than C#?
Out of the box in VB (that's VB 6.0, not VB.net) and VBScript!
Public Property Get LengthInches() As Double
LengthInches = LengthMetres * 39
End Property
Public Property Let Leng …
3
votes
How to autocomplete in ASPX with original page request only?
Use the jQuery autocomplete plugin as suggested by Steve Willcock. Output a regular sele …
0
votes
What does () mean in a lambda expression when using Actions?
I think of lambas like this:
(x) => { return x * 2; }
But only this is important:
(x) => { return x * 2; }
We need the => to know t …
0
votes
How can I “Go Back” without using Response.Redirect
Merge the two files into one, and show posted values in the form. Eg. <input type="text" name="lorem" value="<?=Request.Form["lorem"] ?? "default value" ?>">
If you …
2
votes
Strip double quotes from a string in .NET
c#: "\"", thus s.Replace("\"", "")
vb/vbs/vb.net: "" thus s.Replace("""", "")
…
0
votes
Confirmation dialog at runtime in asp.net
Put the check before rendering the page to the client. Then attach a handler (on the client side, eg. javascript) to the save-button or form that displays the confirmation box (but only if the savi …
1
vote
Convert c# to clientside Javascript
If you change int to var, your code is valid JavaScript. (But since it depends on other functions and objects you need to convert those as well.) Also if you're using the …
3
votes
Database file is inexplicably locked during SQLite commit
Run Sysinternals Process Monitor and filter on filename while running your program to rule out if any othe …
1
vote
0
votes
Mixing C# & VB In The Same Project
You need one project per language. I'm quite confident I saw a tool that merged assemblies, if you find that tool you should be good to go. If you need to use both languages in the same class, you …
0
votes
0
votes
How to cast Generic Lists dynamically in C#?
List<string> listString = (from o in listObject select (string)o).ToList();
…
