0
votes
How best to make the selected date of an ASP.Net Calendar control available to javascript?
You might find useful the MS AJAX Calendar control extender, you can get the date just by …
0
votes
1
vote
How do I make a tag cloud in ASP.NET?
There are many approaches and techniques...
Clustering Algorithms for Tag Clouds
…
1
vote
Trouble deploying code written on VS2008 to server running .NET Framework 2.0
You are referencing assemblies of the .NET Framework 3.5, are you using EntityDataSources??
Remove those 3.5 references...
You also need the AJAX Extensions (System.Web.Extensions) …
0
votes
ASP.NET compression
I think the Global.asax option will be a good if you are in a shared hosting environment for example, where you don't have access to IIS configuration.
IIS 6 provides basic compression sup …
7
votes
Is there any tools for automatic removal of comments from JavaScript code?
YUI Compressor in addition to removing comments and white-spaces, obfuscates local variables using the smallest possible vari …
1
vote
How can you reference code written in another language in the App_Code folder in ASP.Net?
Here is a very good example about mixing C# and VB in the same Web project...
The trick is done using the …
3
votes
Best 3rd Party ASP.Net Grid Control
I use RadControls for ASP.NET AJAX from Telerik, they are really good controls, all have built-in AJAX support …
1
vote
How do I create a Google Sitemap for my ASP.NET website?
You can try this DotNetNuke Google Sitemap Generator.
…
1
vote
What is the quickest way to get the absolute uri for the root of the app in asp.net?
You can do it like this:
string.Format("{0}://{1}:{2}", Request.Url.Scheme, Request.Url.Host, Request.Url.Port)
And you'll get the …
34
votes
Adding a newline into a string in C#
string text = "fkdfdsfdflkdkfk@dfsdfjk72388389@kdkfkdfkkl@jkdjkfjd@jjjk@";
text = text.Replace("@", "@" + System.Environment.NewLine);
…
6
votes
Server.Transfer Vs. Response.Redirect
Response.Redirect simply sends a message down to the (HTTP 302) browser.
Server.Transfer happens without the browser knowi …
4
votes
4
votes
Asp.net Dropdownlist selectedindexchanged event not firing on up / down arrow
Try this:
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" onKeyUp="this.blur();">
…
2
votes
Decimal comaprison in Java script
You can also do type casting:
var a = "3.00";
var b = "3";
Number(a) == Number(b) // This will be true
…
