Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:875918
More Search Options
RSS Available
Matching Posts
Re: how to insert a new item to the top of the listbox after databinding in Silverlight?
Regarding the Error: "Operation not supported on read-only collection". Since you are using ItemsSource for Binding the ListBox, You need to modify the itemsSource instead of listbox control's items. Let me know. if this helps you. On a different note, apart from ListItem, You can also use TextBlock to make insert at desired location, TextBlock t = new TextBlock(); t.Text = "--Select--"; listbox1.Items.Insert(0, t);
Posted to
Data Presentation Controls
(Forum)
by
scil
on 7/16/2009
Re: SQL Network Interfaces Error 26???
Make sure your "SQL Server Browser, service" is started on the Server. Better you can set the Service type to Automatic.
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
scil
on 7/15/2009
Re: how to insert a new item to the top of the listbox after databinding in Silverlight?
After DataBind(), use Snippet like below. ListItem item1 = new ListItem(); item1.Text = "--Select--"; //any Text item1.Value = string.Empty; //any Value, use value of appropriate type depending on your underlying DataSource this.ListBox1.Items.Insert(0, item1);
Posted to
Data Presentation Controls
(Forum)
by
scil
on 7/15/2009
Re: VS Remote Debugging - Please help, going crazy
Greg, (1) You should verify the Permissions of your Windows Account in the Remote Box. If the process you are attempting to Debug is running under a different "Account Name" your account must be under the "System Administrators" group in the Remote Box. (2) If you have enough permission on the remote box try to run the Remote Debugger as administrator.
Posted to
Visual Studio 2005
(Forum)
by
scil
on 7/3/2009
Re: how do i set my database to be offline?
In SQL Server Family, Assuming you do not want to use options from Enterprise Manager, you can utilize "sp_dboption" e.g. --Take Offline sp_dboption '%DB-NAME%' , 'offline' , 'true' --Online [Make Available] sp_dboption '%DB-NAME%' , 'offline' , 'false'
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
scil
on 7/1/2009
Re: NEWBIE needs help saving image into SQL Server 2005 database
Follow the article at: http://www.aspnettutorials.com/tutorials/database/Save-Img-ToDB-VB.aspx
Posted to
SQL Server, SQL Server Express, and SqlDataSource Control
(Forum)
by
scil
on 6/18/2009
Re: PostBack generated in asynch call? CalenedarExtender is why?
Do you have AutoEventWireup ="false" in your intended Page ? if not try setting it to "false" and try again. Ref: http://articles.techrepublic.com.com/5100-10878_11-1045191.html
Posted to
ASP.NET AJAX UI
(Forum)
by
scil
on 6/17/2009
Re: Best choice to store large pdf's on hosting server
In order to save file on the webserver file system, ASPNET account will require Write permissions on the intended folder. if you are storing multiple files in this folder you will have to handle the uniqueness of the file in question and as the size of the file is large, expect this folder to expand on the web server! Streaming the file to DB would be a good choice w.r.t Security and Management of the file/files and while processing you may want to get it to MemoryStream and render it back. Depending
Posted to
Architecture
(Forum)
by
scil
on 6/17/2009
Page 1 of 1 (8 items)
ASP.NET:
Merry Christmas
TechNet Edge:
FPE Customer Story
Silverlight:
Being a writer, and having an editor. A Short Rant.
Channel 9:
Channel 9 Live at PDC09: Dr Brian Brooks (3M)
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 13 of 13
Silverlight:
Information for Silverlight HVP Developers…
WindowsClient:
Custom Content Loaders in Silverlight 4.0
WindowsClient:
MVVM Links\Info
TechNet Edge:
Check out how Dolly Parton uses IE8 and Web slices!!!
Silverlight:
A Silverlight HVP Update
Channel 9:
Channel 9 Live at PDC09: This Week on Channel 9 - PDC09 Daily Show Edition Day 1
Channel 9:
Maria Klawe: Scholar, Scientist and Microsoft Board Member
Channel 10:
Play the Bing Sherlock Holmes Game
Channel 9:
Channel 9 Live at PDC09: Loic Le Meur
Channel 10:
How to Delete Jump List Items
Channel 10:
Roll Back to Classic Network Indicator in Win7
Channel 9:
Jafar Husain: Silverlight Toolkit and Rx, Part 2
Channel 9:
Ping 42: Is Microsoft cool? Photo DNA, Win7 tool, 10k MIX contest
Channel 9:
Jafar Husain: Silverlight Toolkit and Rx, Part 1
Channel 9:
Francesco Logozzo - Static Checking with Code Contracts for .NET
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online