Tag-asp.net

9140reads
Using jQuery for ASP.NET Textbox Autocomplete

Using jQuery for ASP.NET Textbox Autocomplete view story

http://www.msjoe.com The ASP.NET Ajax Control Toolkit includes an “Autocomplete Extender“.In this series I’ve been demonstrating ways to implement the features of the MS Ajax Toolkit with jQuery.jQuery UI makes “AutoComplete” very straight forward (Read the plugin spec here.)

7213reads
BING Search using ASP.NET and jQuery Ajax | .NET Zone

BING Search using ASP.NET and jQuery Ajax | .NET Zoneview story

http://dotnet.dzone.com The BING API provides extremely simple way to make search queries using BING. It provides nice way to get the search results as XML or JSON. In this blog...

4125reads
Integrate Bing Maps With Geonames Database And ASP.NET

Integrate Bing Maps With Geonames Database And ASP.NETview story

http://midnightprogrammer.net To locate a place on maps (Bing or Google), the best thing is to get the latitude and longitude of the location, this ensures that the place we are pinning on the map is accurate. But the big question is to where to get the latitude and longitude of the location. There might be a web service for getting the latitude and longitude of a location, but wouldn't it be nice if you just have to query a local database?

549reads

Verification for API - Detect GET source?view story

http://www.codingforums.com Hey everyone, I'm developing a calendar program for the company I work for. I am working right now on the API code for it, that will spit out either the XML, or stled XML of the calendar. Some "events" are for non-public viewing, so i need to specify some sort of password or passcode in the API request. Is there any way to do this and keep it hidden?

351reads

Consuming .asmx serviceview story

http://www.codingforums.com Hello, I have a HTML document and an .asmx service I would like to consume. The web service sends a "Hello World" message. How do I get the HTML to receive it? Thank you for your help.

480reads

Login system Helpview story

http://www.codingforums.com Hello there.:) I have developed a static website using expression web 2. You can visit it: Getpak Website Now i want to add a login system. but i found that i can use aspx controls in expression web but cant add my own c# code. hope you got my point. can anyone give me suggestion how to do that. if i make a asp.net project in visual studio and then can i merge it with my expression web website? another option will be using PHP? but i dont want to:( Is there any other working way? site is pure html so how can i add login register system. thanx

438reads

An Evaluation of Windward Reportsview story

http://www.codingforums.com There is a very interesting reporting/doc gen system where you design the templates in Microsoft Office. It Makes the layout trivial. There's a good review of it at An Evaluation of Windward Reports. Really i got benefited a lot from here.. And i have been continuously working here.. Enjoy.. thanks :)

650reads

aajx and dynamic control is created at run timeview story

http://www.codingforums.com can u correct the error Parser Error Message: Type 'System.Web.UI.UpdatePanel' does not have a public property named 'table'. i have following code Code: Public Partial Class WebForm1     Inherits System.Web.UI.Page     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load     End Sub     Protected Sub RadioButtonList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)         If RadioButtonList1.SelectedValue = "blue" Then             TextBox1.BackColor = System.Drawing.Color.Blue

359reads

help inserting date into SQL DBview story

http://www.codingforums.com i have a form that collects the date an inserts it into sql db. The form has 3 text fields one for month, one day and one for year. The problem is that when the date is being inserted into the database it is not inserting the proper values. the sql code is below: Code:  strSql &= ", crsCity = '" & dbSafe(Request.Form("city")) & "', crsDate = " & (Request.Form("yr")) & "-" & (Request.Form("mo")) & "-" & (Request.Form("day")) & "" If I choose the follow date on the form, 12/31/2010 it inserts the following into the DB, 5/22/1905

559reads

Entity Data Model - Original Valueview story

How do you configure an entity field in the Entity Data Model to automatically get the original value of the field if the value passed to the field in my code is null? Maybe in the table mapping? I'm not using stored procedures (LINQ). Thanks in advance for your help.