Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
~1K People Reached
Favorite Tags
Member Avatar for priyanka_12

private void comboKeyPressed() { cboAuthor.DroppedDown = true; object[] originalList = (object[])cboAuthor.Tag; if (originalList == null) { // backup original list originalList = new object[cboAuthor.Items.Count]; cboAuthor.Items.CopyTo(originalList, 0); cboAuthor.Tag = originalList; } // prepare list of matching items string s = cboAuthor.Text.ToLower(); IEnumerable<object> newList = originalList; if (s.Length > 0) { newList …

Member Avatar for JerrimePatient
0
183
Member Avatar for complete

How do I make the TextBlock in Expresion Blend look better? I want the Text Blook to have that 3D embedded look where it appears pushed in deeper than the surrounding area. What I mean by that is that the top of the box is a darker and more refined …

Member Avatar for Vijay_18
0
250
Member Avatar for complete

I am working with Expression Blend 3. I want to do something and I do not know if it is possible but common sense tells me it should be. The whole idea is to break apart a XAML content into three XAML pages. One page is the master that contains …

Member Avatar for Vijay_18
0
133
Member Avatar for doaji

i have a website that i have configured to send me an email every time an error occurs, i keep getting the following error: Message: Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation …

Member Avatar for Vijay_18
0
245
Member Avatar for JerrimePatient

Can anyone give me an example to use authentication and authotization in MVC and C#?

Member Avatar for Vijay_18
0
179
Member Avatar for Violet_82

Guys, I am a little confused with the usage of the keyword model/Model in MVC, so I was hoping somebody could clarify a few aspects of it (needless to say internet searches didn't really help that much). Given this model: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Ebuy.Website.Tests.Models …

Member Avatar for Vijay_18
1
164
Member Avatar for jafar muzeyin

I am working on my final year project. It is a web based system that is based on ASP.NET/MVC. I want to start from database but I have a little confusion which database to use from Sql, sqlite and sqlite3 that is not complicated and good for me to finish …

Member Avatar for geniusvishal
0
338