Search Results

1
vote
6answers
727 views

Can I get calling instance from within method via reflection/diagnostics?

Is there any way via System.Reflection, System.Diagnostics or other to get a reference to the actual instance that is calling a static method without passing it in to the method itself. For …
3
votes

Update in Linq

By default, the entities will use all fields for checking concurrency when making edits. That's what's throwing the InvalidOperationException. This can be setting the Update Check property …
20
votes

How to Compare Flags in C#?

if ((testItem & FlagTest.Flag1) == FlagTest.Flag1) { // Do something } …
1
vote

Why is .NET exception not caught by try/catch block?

I downloaded the sample VS2008 project, and am a bit stumped here too. I was able to get past the exceptions however, although probably not in a way that will work will great for you. But here's …
0
votes

Dynamic linq:Creating an extension method that produces JSON result

static void Main(string[] args) { NorthwindDataContext db = new NorthwindDataContext(); var query = db.Customers; string json = query.GetJsonTable<Customer>(2, 10, "Custom …
1
vote

Dynamic linq:Creating an extension method that produces JSON result

This is really ugly and there may be some issues with the string replacement, but it produces the expected results: public static class JSonify { public static string GetJsonTab …
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 …