programaticaly change the background img / css classes for mouseover & out.
Murugesan G
Posts
-
Tabbed Page in HTML -
how to get data from xml?try with
nameNode.NextSibling
or else go with xmlreader
-
Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified] -
Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified]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;
} -
Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified].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.
-
Wait it looks same but its diff read the problem:- how to connect the ASP.NET with sql server 2005 express edition . [modified]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.
-
How to get records from XML based on input conditions [modified]/* 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
-
probs in create xmlhttp in mozillaDude! 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();
-
Xml special characterTry this u will get "RCI>" xmlReader.ReadInnerXml()
-
How to run an .exe from asp.net page -
How to show Message Box in Asp.Net with C#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.
-
Textbox Focus ProblemI don't think problem with browser but ur code checks KeyCode and which won't work if u use mouse to click.
-
How to Read a User/System Environment Variable Using c++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 ); } }
-
how to write excel data in binarygives u berif idea about writing Excel binary file Generate Excel files without using Microsoft Excel[^]
-
Not all path return a value?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;
-
How to convert string to datetime datatype?Dude try this String s = "January 1, 1986"; DateTime t1 = DateTime.ParseExact(s, "MMMM d, yyyy", null);