Larsenal
|
Registered User
|
I'm happy, and I know it.
[Clap! Clap!]
|
|
1d |
awarded | ● Popular Question |
|
1d |
accepted | Get PageName.aspx from Page object |
|
Dec 2 |
comment |
Get PageName.aspx from Page object You can't rely on getting it from the page object. Especially with URL routing becoming common, the page URL (PageName.aspx) may not always map to a page class named PageName. Like it or not, the correct way to get the "page name" used in the URL is to use the Request object. One of the properties of System.Web.UI.Page is Context. You say you don't want to worry about Context. However, a Page object is always going to have access to Context through that property. I think you need to help us understand why you're so adamant about using something other than Context. |
|
Dec 2 |
answered | Get PageName.aspx from Page object |
|
Dec 1 |
revised |
Displaying an XML code in the browser fixed grammar and spelling |
|
Nov 30 |
comment |
Best way to keep track of current online users I did write the same thing! |
|
Nov 30 |
answered | Best way to keep track of current online users |
|
Nov 19 |
revised |
Remove all columns with no data from DataTable added 42 characters in body |
|
Nov 19 |
comment |
Remove all columns with no data from DataTable Maybe ;-). I've actually implemented it myself already. Just don't want to mark it correct yet since it doesn't completely answer the initial question. |
|
Nov 19 |
comment |
Remove all columns with no data from DataTable Nice. Adjust code to check all the column names and you get the green checkmark. |
|
Nov 19 |
asked | Remove all columns with no data from DataTable |
|
Nov 19 |
revised |
What does Silverligtht 4.0 Trusted Mode mean on a Mac? added 14 characters in body |
|
Nov 19 |
revised |
What does Silverligtht 4.0 Trusted Mode mean on a Mac? added 306 characters in body |
|
Nov 19 |
revised |
Does IE9 keep the “Compatibility View” button? added 161 characters in body |
|
Nov 19 |
asked | What does Silverligtht 4.0 Trusted Mode mean on a Mac? |
|
Nov 19 |
asked | Does IE9 keep the “Compatibility View” button? |
|
Nov 17 |
awarded | ● Notable Question |
|
Nov 13 |
asked | Potential impact of resetting ColdFusion admin password |
|
Nov 12 |
comment |
Understanding ASP.Net instances and threading I'm not questioning the validity of your question at all... but I'm curious to know why you're interested in this. |
|
Nov 12 |
comment |
How do you launch a winform app from within an asp.net page? The reason you won't find many examples is straightforward. There's no easy, conventional way to do it. The approach I mentioned may work, but there is a fair amount of hassle. A lot of folks probably just change their business process so that they don't rely on being able to launch a winform app from an asp.net page. |
|
Nov 12 |
comment |
How do you launch a winform app from within an asp.net page? If you don't need to pass any parameters and truly only need to open an app, the App Protocol registration I describe below may be a little heavy handed. But if you can deal with the security preconditions it would probably work. |
|
Nov 12 |
revised |
How do you launch a winform app from within an asp.net page? edited body; added 100 characters in body |
|
Nov 12 |
comment |
How do you launch a winform app from within an asp.net page? Nope. AFAIK, it's a Windows thing... rather than a browser thing. I've changed the link to go to a better page. |
|
Nov 12 |
answered | How do you launch a winform app from within an asp.net page? |
|
Nov 12 |
comment |
How do you launch a winform app from within an asp.net page? Are you thinking of something similar to how a web page can magically launch iTunes? |
|
Nov 11 |
comment |
Creating a ASP.NET application converting text to speech The test wasn't a WCF service. It just gives you some idea of how fast the library can convert a large amount of text. You REALLY don't want to try to transfer 600MB back from a WCF service. I'd look into compressing the WAV into MP3 using some of your sample data sets to see whether returning a byte array over WCF makes sense. |
|
Nov 11 |
comment |
Creating a ASP.NET application converting text to speech Check my answer for results of a quick test with 44k words. |
|
Nov 11 |
revised |
Creating a ASP.NET application converting text to speech added 145 characters in body |
|
Nov 11 |
comment |
Creating a ASP.NET application converting text to speech Good point about the security. My sample was provided so that OP could test System.Speech with what he describes as a LOT of text. |
|
Nov 11 |
revised |
Creating a ASP.NET application converting text to speech added 58 characters in body |
|
Nov 11 |
revised |
Creating a ASP.NET application converting text to speech added code sample; deleted 107 characters in body |
|
Nov 11 |
comment |
Creating a ASP.NET application converting text to speech To save space, you could have a secondary process that converts to MP3. If the file is meant to be heard only one time by the user, you'd probably want to purge files on a recurring basis (every night, for example). If the user needed to come back to the same conversion, you'd want some way of first checking whether you still had the MP3 and if not, rebuilding it. As far as it's ability to convert large amounts of text... try it. The CP article is a great starting point. |
|
Nov 11 |
answered | Creating a ASP.NET application converting text to speech |
|
Nov 11 |
revised |
Go-Live Plan Templates tags need fixing |
|
Nov 4 |
comment |
SqlDataAdapter vs SqlDataReader +1 The term "DataSet" will help the OP in searching for more details on these distinctions. |
|
Nov 4 |
comment |
Why doesn’t Silverlight support Cursors.SizeAll? Maybe so. But if it's a cross-platform thing, I shouldn't hold my breath for them adding it back in. If it's a runtime size issue, they may add it in the future. |
|
Nov 3 |
asked | Adding visible elements to a custom Panel in Silverlight 3 |
|
Nov 3 |
comment |
Why doesn’t Silverlight support Cursors.SizeAll? I'd use it for resizing elements. The diagonal resizing cursors would be great too. I've seen examples where people had to use SizeNS or SizeWE when a person manipulated one of the corner resize handles of an object. Just feels cheesey. |
|
Nov 3 |
comment |
Why doesn’t Silverlight support Cursors.SizeAll? Yes, my hunch is that it was a cross platform thing rather than trying to reduce the size of the runtime, but there's gotta be someone out there who knows the the answer. |
|
Nov 3 |
asked | Why doesn’t Silverlight support Cursors.SizeAll? |
|
Oct 31 |
asked | What do we know about Windows 8? |
|
Oct 31 |
revised |
What am I missing about WCF? fixed spelling |
|
Oct 28 |
comment |
Scheduling Employees - what data structure to use? A good gut check is to write out some sample queries for known scenarios. Kirk's examples are a good starting point. If it's just a small one-off project and you can easily write queries against your data model, then go with it. The downside of a normalized approach is that it's (arguably) not (as) easy to pull up a row of the database to get a snapshot of a person's schedule. If you wanted to manually edit a person's schedule by manipulating the raw data, your approach may be easier. However, if you want to address individual assignments, a normalized approach may be better. |
|
Oct 27 |
answered | Scheduling Employees - what data structure to use? |
|
Oct 27 |
answered | AnyOne Know of a Good Word Count Algorithm in C# |
|
Oct 27 |
comment |
AnyOne Know of a Good Word Count Algorithm in C# Is your algorithm consistently too high or too low? Or does it vary? |
|
Oct 26 |
revised |
.net - Glass effect in C# 2.0 applications. spelling fix |
|
Oct 20 |
revised |
Linq to Sql - Convert C# to VB.NET help added 192 characters in body |
|
Oct 20 |
comment |
Linq to Sql - Convert C# to VB.NET help Yup. Assumed the OP wouldn't know lambdas, but good to note the correct name in there. |
|
Oct 20 |
accepted | Linq to Sql - Convert C# to VB.NET help |
