Click here to Skip to main content
15,895,557 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Client side Javascript VS Server side vaoidation control in asp.net Pin
Brij12-Sep-10 21:43
mentorBrij12-Sep-10 21:43 
AnswerRe: Client side Javascript VS Server side vaoidation control in asp.net Pin
Abhijit Jana12-Sep-10 22:04
professionalAbhijit Jana12-Sep-10 22:04 
GeneralRe: Client side Javascript VS Server side vaoidation control in asp.net Pin
JC.KaNNaN12-Sep-10 22:25
JC.KaNNaN12-Sep-10 22:25 
QuestionUngroup Excel Columns Pin
Mugdha_Aditya12-Sep-10 19:23
Mugdha_Aditya12-Sep-10 19:23 
AnswerRe: Ungroup Excel Columns Pin
Abhijit Jana12-Sep-10 22:05
professionalAbhijit Jana12-Sep-10 22:05 
GeneralRe: Ungroup Excel Columns Pin
Mugdha_Aditya12-Sep-10 22:56
Mugdha_Aditya12-Sep-10 22:56 
GeneralRe: Ungroup Excel Columns Repost Pin
Richard MacCutchan13-Sep-10 3:46
mveRichard MacCutchan13-Sep-10 3:46 
Questionusing System. ????????? Pin
future383912-Sep-10 14:45
future383912-Sep-10 14:45 
Hello Guys,

I am doing sample in order to improve my .Net Skill.
this is my code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;


namespace Sample.App_Code.DataAccessLayer
{
    public class ItemDB
    {
        public static int Save(Item NewItem)
        {
            int result = 0;
            using (SqlConnection myConnection = new SqlConnection(AppConfiguration.ConnectionString))
            {
                SqlCommand myCommand = new SqlCommand("sprocInsertUpdateSingleItem", myConnection);
                myCommand??????????????????
            }
            return result;
        }
    }
}


whenever after . I press spacebar to get the list of command properties, I can't see anythings. for example at the top of program, when I use

using system.??????

I can't see system.data


could you please tell me what could the problem?
AnswerRe: using System. ????????? Pin
Luc Pattyn12-Sep-10 14:55
sitebuilderLuc Pattyn12-Sep-10 14:55 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 15:14
future383912-Sep-10 15:14 
GeneralRe: using System. ????????? Pin
Luc Pattyn12-Sep-10 16:16
sitebuilderLuc Pattyn12-Sep-10 16:16 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 16:28
future383912-Sep-10 16:28 
GeneralRe: using System. ????????? Pin
Luc Pattyn12-Sep-10 16:43
sitebuilderLuc Pattyn12-Sep-10 16:43 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 20:06
future383912-Sep-10 20:06 
GeneralRe: using System. ????????? Pin
virang_2112-Sep-10 20:40
virang_2112-Sep-10 20:40 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 20:42
future383912-Sep-10 20:42 
GeneralRe: using System. ????????? Pin
virang_2112-Sep-10 20:46
virang_2112-Sep-10 20:46 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 21:20
future383912-Sep-10 21:20 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 22:05
future383912-Sep-10 22:05 
GeneralRe: using System. ????????? Pin
Luc Pattyn13-Sep-10 1:40
sitebuilderLuc Pattyn13-Sep-10 1:40 
GeneralRe: using System. ????????? Pin
future383913-Sep-10 12:33
future383913-Sep-10 12:33 
GeneralRe: using System. ????????? Pin
future383913-Sep-10 12:39
future383913-Sep-10 12:39 
QuestionMVC Design Pattern Pin
JimmyRopes12-Sep-10 8:42
professionalJimmyRopes12-Sep-10 8:42 
AnswerRe: MVC Design Pattern Pin
Keith Barrow12-Sep-10 11:29
professionalKeith Barrow12-Sep-10 11:29 
GeneralRe: MVC Design Pattern Pin
JimmyRopes12-Sep-10 12:11
professionalJimmyRopes12-Sep-10 12:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.