klbaiju


{ City } kollam
< Country > india
* Profession * developer
User No # 28330
Total Questions Posted # 11
Total Answers Posted # 3

Total Answers Posted for My Questions # 60
Total Views for My Questions # 100321

Users Marked my Answers as Correct # 46
Users Marked my Answers as Wrong # 28
Questions / { klbaiju }
Questions Answers Category Views Company eMail

what is caching

3 ASP.NET 4922

write query for fourth maximum salary from employee table

Mind Tree, SP Software,

14 SQL Server 20471

how to delete duplicate rows from table in sql server

HCL, UHG,

12 SQL Server 19815

what is profiles in asp.net

1 ASP.NET 2798

what is roles in asp.net

2 ASP.NET 4298

how to update a null value field in sql server eg a table contains 3 fields id,name,salary and 3 records salary of 1 record is null i want update the nullfield 111 arun 300 112 ddd 200 113 ttt null i want to update table with add 100 to every record include null after updation the recrds should be 111 arun 400 112 ddd 300 113 ttt 100

ABC, HCL,

6 SQL Server 15997

i have table students with fields classname,studname select * from students classname studname 1 xxxxx 1 yyyy 1 zzzz 2 qqqq 2 tttt 3 dsds 3 www i want the output should be No of students in class 1 : 3 No of students in class 2 : 2 No of students in class 3 : 2

HCL, ZX,

5 SQL Server 8262

what is the difference between group and having give an example with query and sample output

7 SQL Server 7908

Hi this is the coding for adding data in to an xml table i want the coding for update and delete Try Dim emp_xml_doc As New XmlDocument If System.IO.File.Exists(Server.MapPath("emp.xml")) Then emp_xml_doc.Load(Server.MapPath("emp.xml")) Dim myrow_element As XmlElement myrow_element = emp_xml_doc.CreateElement("EmpDetails") Dim str As String str = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

InfoCom,

ASP.NET 1717

hi, i have a table called names and field name select * from names name a b c d i want to display like this name a,b,c,d how it is possible Regards Baiju

4 SQL Server 5260

Iam using an asp.net application . i want to update one of my table in database at 4pm every day how it is possible.

ABC, Evalueserve,

6 Dot Net Framework 8873




Answers / { klbaiju }

Question { IBM, 16232 }

what is .net?


Answer

.net is one of micrsoft's platform for developing
webapplication,windows application,webservices.it's core is clr

Is This Answer Correct ?    2 Yes 4 No

Question { 9373 }

what is bubbled event ? give suitable example in code vice
with demo


Answer

Bubbled events are the events made by child controls inside
a major control.
example . checkbox in a datagrid
the child controls do not raise their events by themselves
,rather they passthe event to container parent(which can be
datagrid,datalist,repeater),which passed to the page as
"ItemCommand"event..As the child control send there events
to parent .this is termed as event bubbling

Is This Answer Correct ?    15 Yes 1 No


Question { CSC, 15125 }

Differences between VB.Net and C#, related to OOPS concepts


Answer

c# is faster than vb.net
C# can access unmanaged code in the background
c# has more functionality

Is This Answer Correct ?    29 Yes 23 No