Search

You searched for the word(s): userid:683573

Matching Posts

  • Re: GridView_RowCommand executes twice and displays none!

    If you are using < asp : ButtonField ButtonType ="Image" ........ /> then it would happen. Solution : < asp : ButtonField ButtonType ="Image" CausesValidation ="true" ...... /> It worked for me.
    Posted to Web Forms (Forum) by BhaveshPatel on 10/15/2008
  • Re: ASP.NET Menu control not being rendered properly in Google Chrome

    Hi!! I am in the same boat. Well the above provided link http://forums.asp.net/t/941229.aspx?PageIndex=3 is for safari. even though the problem seems to be same, I have question what should I put in this tag < browser refID= "safari1plus" > of .browser file for google chrome ? I tried with putting refID as 'GoogleChrome' and 'Chrome' .. nothing worked for me and I also couldnt find anything about it? any clue??
  • Re: LINQ IN clause for char[] array ?

    Got it!! Just incase if someone have same issue, here is a solution: string [] strCharArray; // strValue = "A,B,C"; strCharArray = strValue.Split( new char [] { ',' }); var StationDetail1 = from p in db.LANEINFOs where strCharArray.Contains(p.SType. ToString() ) select new { p.StationID, p.Name, p.SType }; so basically, convert type char to string and then use string array.
  • Re: LINQ IN clause for char[] array ?

    Is this wrong place to ask LINQ Question or no one knows answer for this? Thanks
  • LINQ IN clause for char[] array ?

    Hi I have tried following and succeded in that. string [] strArName = new string [2]; strArName[0] = "Waukegan" ; strArName[1] = "Schaumburg" ; and Then var StationDetail1 = from p in db.LANEINFOs where strArName.Contains(p.Name) select new { p.StationID, p.Name }; And also it works for int[] array. but it does not work for char[] array. so if I try char [] strTemp = new char [2]; strTemp[0] = 'M' ; strTemp[1] = 'F' ; var StationDetail1 = from p in db.LANEINFOs
    Posted to Data Access and ObjectDataSource Control (Forum) by BhaveshPatel on 6/5/2008
    Filed under: linq object datasource, linq to sql, LINQ
  • Re: VS 2008 Professional Edition - Create new website - No templates available

    Well !!! Thanks but it screwed up again as I added below Add-In : http://www.microsoft.com/downloads/details.aspx?familyid=A999C84F-0FE5-4926-A1BF-4730D1CAA98C&displaylang=en suggested by http://forums.asp.net/p/1269504/2399042.aspx#2399042 . Do I have to REPAIR VS 2008 again?
    Posted to Visual Studio 2008 (Forum) by BhaveshPatel on 6/3/2008
  • Re: VS 2008 can not connect with sql 2008

    Thanks for reply. I downloaded above Add-In and installed on my computer successfully. you said It does not support the Linq to SQL designer, I dont know what it is but it worked for me. I was able to drag and drop tables from server explorer to .dbml file. and then in one of my Default.aspx.cs file, I was able to do following: DataClassesDataContext db = new DataClassesDataContext(); var products = from p in db.tests select p; GridView1.DataSource = products; GridView1.DataBind(); and It works fine
    Posted to Visual Studio 2008 (Forum) by BhaveshPatel on 6/3/2008
    Filed under: Visual Studio 2008, visual Studio 2008 bug, visual Studio 2008 custom provider bug, Visual Studio 2008 design view, visual Studio 2008 install failure, Visual Studio 2008 LINQ to SQL, Visual Studio 2008 Publish Web Site Error ASP.NET, VS 20008, vs 2008, vs 2008 install failure, VS 2008 professional, VS 2008 Professional 90-day download trial, .net framework 3.5
  • VS 2008 can not connect with sql 2008

    Hi! I have Visual studio 2008 Pro edition(90 Days trial) and SQL server 2008(Code Name "Katmai"). Now I am trying to create a LINQ to SQL website. When I try to connect to sql using Server Explorer in vs with DataSource = Microsoft SQl Sever and Data Provider: .NET Framework Data Provider for SQL Server, Test Connection is succeeded. but when I hit ok, I get error message like 'This server version is not supported. only servers up to Microsoft SQL server 2005 are supported.' Do
    Posted to Visual Studio 2008 (Forum) by BhaveshPatel on 6/2/2008
    Filed under: Visual Studio 2008, Visual Studio 2008 LINQ to SQL, VS 20008, vs 2008, VS for DB Professionals 2008 Designer, VS2008 Web Sites/Applications, visual Studio 2008 bug
  • Re: VS 2008 Professional Edition - Create new website - No templates available

    So far no answers!!! No problem I didnt stop trying though and luckily I solved this problem.(Atleast for me). (1) Disable any Antivirus software. ( Make sure it does not automatically starts on restarting computer. bcoz I set it to Manual and still it was starting up on each reboot.) (2) Login as 'Administrator' in your computer. ( any other accounts who has administrative privileges is not enough.) (3) Repair Visual studio 2008. Bingo!!! it just worked for me. Thanks to johram , atleast
    Posted to Visual Studio 2008 (Forum) by BhaveshPatel on 5/30/2008
  • Re: VS 2008 Professional Edition - Create new website - No templates available

    Thanks for reply. I tried following command after clearing cache. Setting environment for using Microsoft Visual Studio 2005 x86 tools. C:\Program Files\Microsoft Visual Studio 8\VC>devenv/InstallVSTemplates C:\Program Files\Microsoft Visual Studio 8\VC>cd.. C:\Program Files\Microsoft Visual Studio 8>cd.. C:\Program Files>cd Microsoft Visual Studio 9.0 C:\Program Files\Microsoft Visual Studio 9.0>cd VC C:\Program Files\Microsoft Visual Studio 9.0\VC>devenv/InstallVSTemplates C:
    Posted to Visual Studio 2008 (Forum) by BhaveshPatel on 5/29/2008
Page 1 of 13 (127 items) 1 2 3 4 5 Next > ... Last »