5
votes
5answers
4k views
How to implement custom JSON serialization from ASP.NET web service?
What options are there for serialization when returning instances of custom classes from a WebService?
We have some classes with a number of child collection class properties as well as oth …
3
votes
Is there a way to programatically determine if a font file has a specific Unicode Glyph?
Here's a pass at it using c# and the windows api.
[DllImport("gdi32.dll")]
public static extern uint GetFontUnicodeRanges(IntPtr hdc, IntPtr lpgs);
[DllImport("gdi32.dll")]
public …
6
votes
LINQ: custom column names
As CQ states, you can't have a space for the field name, you can return new columns however.
var query = from u in db.Users
select new
{
Firs …
8
votes
LINQ: custom column names
If you want to change the header text, you can set that in the GridView definition...
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false">
<Columns& …
4
votes
How can I call a javascript function from inside a method?
I'm not sure I fully understand the sequence of what you are trying to do, what's client-side and what's not....
However, you could add a Start-up javascript method to the page which would …
1
vote
How can I call a javascript function from inside a method?
If the above is how you are calling RegisterStartupScript, it won't work because you don't have a reference to the "Page" object.
bgchange in your example extends Object (assuming IMapSer …
0
votes
ASP.NET 2.0 - Need to programmatically click a link
Rashack's post show's how to do it. You can just do it in javascript.
function ClickLink() {
document.getElementById('').click();
}
If you want this to fire aft …
