Blogs1 - 10 of 11,188 recent posts for tag:ASP.NET
09
Nov
2009
if you are expecting too much data from wcf service

1 hour ago by dotnettrails

Use WCF basicHTTPBinding as the binding. By default it will be wsHTTPBinding

.Net Trails - dotnettrails.wordpress.com

Master Page kullanımı

1 hour ago by Caner BAKİ

Merhaba, asp.net masterpage kullanımını nasıl yapabiliriz bunu anlatmaya çalışacağım. İlk başta masterpage niye kullanılmalıdır bundan kısada olsa bahsetmek isterim. Sayfalarımızın genel bir tasarımı bulunmaktadır. Bu tasarımlardan sayfalar tretilir yalnız bu tasarımın bir yerinde hata yaptığımızı f ...

Caner BAKİ - ASP.NET | ... - canerbaki.com

Asp.Net Login İşlemi

1 hour ago by burak

SqlConnection con = new SqlConnection("server=.;Database=aspnet;Integrated Security=SSPI"); SqlCommand cmd = new SqlCommand(”select * from kullanici where mail = @mail and sifre = @sifre “, con); cmd.Parameters.AddWithValue(”@mail”, mail.Text); cmd.Parameters.AddWithValue(”@sifre”, sifre.Text); stri ...

CmdTürk.com - blog.cmdturk.com

Asp.Net İle GridView’e Veri Çekme

1 hour ago by burak

SqlConnection con = new SqlConnection(”server=.;Database=aspnet;Integrated Security=SSPI”); SqlCommand cmd = new SqlCommand(); cmd.Connection = con; cmd.CommandText = “select * from kullanici”; SqlDataAdapter da = new SqlDataAdapter(cmd); DataTable dt = new DataTable(); da.Fill(dt); GridView1.DataSo ...

CmdTürk.com - blog.cmdturk.com

.NET 「Microsoft JScript 執行階段錯誤: 使用中的 SQL Server ...

2 hours ago by 詹 姆士

在使用VS2008開發WEB FORM時,測試「更新」功能時出現「Microsoft JScript 執行階段錯誤: Sys.WebForms.PageRequestManagerServerErrorException: 使用中的 SQL Server 版本不支援資料型別 ‘date’。」 發現是因為VS在產生ASP.NET UPDATE程式碼時,把datetime的欄位型態,變成date, 只要於程式碼上修正為datetime即可正常執行。

詹姆士的部落格 - poppc.tw/~james

.NET 設定SQLDataSource進階選項反白

3 hours ago by 詹 姆士

設定SQLDataSource進階選項反白,如下圖, 後來發現是自己建的資料表忘了設定主索引導致,於資料表設定KEY為主索引後儲存, 再去看進階選項,就可以正常勾選了

詹姆士的部落格 - poppc.tw/~james

web developer tips (61):如何创建Asp.net Dynamic Data网站

4 hours ago by xjb

原文地址: How to create an ASP.Net Dynamic Data Web Site 如果你的网站是大量数据来驱动的,那么,这里有个很简单而快速的方法来构建一个网站。条件是需要安装 Visual Studio 2008 SP1 或者 Visual Web Developer 2008 Express SP1 Dynamic Data(动态数据) 网站利用的是被称为“脚手架(Scaffolding)”机制,利用这种机制可以让 Asp.net通过数据模型,为数据表生成网页,生成的网页具有每个数据表的插入、删除和更新的功能。 以下为创建动态数据网站的步骤: http://www. ...

守望轩 - watch-life.net · Rank: 20,169 · 16 references

Développeur Confirmé .NET

4 hours ago by ma7moud

Pour assurer sa croissance et répondre à la demande de ses clients (SSII et éditeurs de logiciels français), IP-Tech recrute un développeur confirmé .Net. (more…)

La Tunisienne pour l'emploi - tn-emploi.com · 1 reference

Return DataTable from Web Service

4 hours ago by NinethSense

I know this is an old theme but I had to write a sample app for demonstration in a tech forum. So reproducing here also. Importantly, the DataTable/DataSet must be serializable. ASMX Code: public class Service1 : System. Web. Services. WebService { [WebMethod ] public DataTable HelloWorldDataSet ( ) ...

NinethSense - blog.ninethsense.com · 3 references

The best site for information on ASP.Net

5 hours ago by vkinfotek

A good thing MS did is to have a dedicated site for ASP.Net. This is the official Microsoft site for ASP.Net. Includes links for downloading AJAX, ASP.Net framework and Visual Developer and has a bing search bar at the top.

Software Buzz - for the ... - softwarebuzz.wordpress.com · 2 references

Previous1234567