Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Murugesan G

@Murugesan G
About
Posts
16
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Tabbed Page in HTML
    M Murugesan G

    programaticaly change the background img / css classes for mouseover & out.

    Web Development javascript php html com tools

  • how to get data from xml?
    M Murugesan G

    try with

    nameNode.NextSibling

    or else go with xmlreader

    ASP.NET wpf wcf sysadmin xml tutorial

  • Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified]
    M Murugesan G

    murugesan@rsi.ramco.com

    ASP.NET help csharp database visual-studio tutorial

  • Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified]
    M Murugesan G

    Try to throw an exception and see the message... if ur not getting any exception then simply check the database table has rows or not.

    catch (Exception ex)
    {
    // except = ex.ToString();
    throw;
    }

    ASP.NET help csharp database visual-studio tutorial

  • Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified]
    M Murugesan G

    .Net framework SDK, which is free and download it from SDK Link

    write a single test page with complete diagnostic.

    For isolating the problem write a server side page to connect database.

    ASP.NET help csharp database visual-studio tutorial

  • Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified]
    M Murugesan G

    I don't think problem with db connections.... if u think so try to install Fx SDK and debug ur code using CLR Debugger or else write a single test page with complete diagnostic.

    ASP.NET help csharp database visual-studio tutorial

  • How to get records from XML based on input conditions [modified]
    M Murugesan G

    /* List<XElement> lstRecords = null; lstRecords = uidDb.Descendants("Record").Where(r => (r.Element(inputParams[0].Name).Value.Equals(inputParams[0].Value)&& r.Element(inputParams[1].Name).Value.Equals(inputParams[1].Value))).ToList(); */ var lstRecords1 = from r in uidDb.Descendants("Record") from inattr in inputParams where r.Element(inattr.Name) != null && r.Element(inattr.Name).Value == inattr.Value select r; lstRecords = (lstRecords1.Count() > 0) ? lstRecords1.ToList<XElement>() : null; Note: which is not optimized one but still u can use it

    LINQ xml tutorial

  • probs in create xmlhttp in mozilla
    M Murugesan G

    Dude! I don't find anything wrong but u were reloading your page imdtly sending request. can u comment it and have a try //window.location.reload();

    ASP.NET

  • Xml special character
    M Murugesan G

    Try this u will get "RCI>" xmlReader.ReadInnerXml()

    XML / XSL html xml tutorial question

  • How to run an .exe from asp.net page
    M Murugesan G

    Just for performing background operations u can use it since server side process are not visible to end users MSDN[^]

    ASP.NET csharp asp-net help tutorial

  • How to show Message Box in Asp.Net with C#
    M Murugesan G

    ASP.Net is a server side code and u wanted to show any message to end user on web based application then u go with javascript alert method or try to have new web page just for showing messages alone.

    ASP.NET csharp asp-net tutorial

  • Textbox Focus Problem
    M Murugesan G

    I don't think problem with browser but ur code checks KeyCode and which won't work if u use mouse to click.

    ASP.NET help java javascript question

  • How to Read a User/System Environment Variable Using c++
    M Murugesan G

    for Visual C++ try this otherwise getenv will work using namespace System; using namespace System::Collections; int main() { Console::WriteLine(); Console::WriteLine( "GetEnvironmentVariables: " ); IDictionary^ environmentVariables = Environment::GetEnvironmentVariables(); IEnumerator^ myEnum = environmentVariables->GetEnumerator(); while ( myEnum->MoveNext() ) { DictionaryEntry^ de = safe_cast<dictionaryentry^>(myEnum->Current); Console::WriteLine( " {0} = {1}", de->Key, de->Value ); } }

    C / C++ / MFC c++ tutorial workspace

  • how to write excel data in binary
    M Murugesan G

    gives u berif idea about writing Excel binary file Generate Excel files without using Microsoft Excel[^]

    C# help tutorial question

  • Not all path return a value?
    M Murugesan G

    Just put return statment after the catch blok, catch (Exception ex) { MessageBox.Show("An error occurred while reading the ini file:\r\n" + ex.Message, "System Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } return false;

    C# data-structures help question

  • How to convert string to datetime datatype?
    M Murugesan G

    Dude try this String s = "January 1, 1986"; DateTime t1 = DateTime.ParseExact(s, "MMMM d, yyyy", null);

    C# tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups