Click here to Skip to main content
15,897,187 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Clearing columns from gridview Pin
Pankaj Chamria10-Oct-07 0:15
Pankaj Chamria10-Oct-07 0:15 
QuestionHow to convert 1000.10 to "Ten thousand and Ten Cent" word ? Pin
cheeken2u9-Oct-07 20:39
cheeken2u9-Oct-07 20:39 
AnswerRe: How to convert 1000.10 to "Ten thousand and Ten Cent" word ? Pin
Sandeep Akhare9-Oct-07 20:55
Sandeep Akhare9-Oct-07 20:55 
GeneralRe: How to convert 1000.10 to "Ten thousand and Ten Cent" word ? [modified] Pin
cheeken2u9-Oct-07 21:01
cheeken2u9-Oct-07 21:01 
AnswerRe: How to convert 1000.10 to "Ten thousand and Ten Cent" word ? Pin
That's Aragon9-Oct-07 21:09
That's Aragon9-Oct-07 21:09 
GeneralRe: How to convert 1000.10 to "Ten thousand and Ten Cent" word ? Pin
cheeken2u9-Oct-07 21:12
cheeken2u9-Oct-07 21:12 
AnswerRe: How to convert 1000.10 to "Ten thousand and Ten Cent" word ? Pin
Christian Graus9-Oct-07 23:30
protectorChristian Graus9-Oct-07 23:30 
QuestionException Pin
kinnuP9-Oct-07 20:25
kinnuP9-Oct-07 20:25 
hi all ,
private DataSet GetData()
{
string empquery = "select Empid,Ename from tbl_Employee";
string deptquery = "select * from tbl_Deprament";
con = new SqlConnection(connection);
dataSet = new DataSet();
try
{
con.Open();
sqlAdpter = new SqlDataAdapter(empquery, con);
sqlAdpter.Fill(dataSet, "tbl_Employee");
SqlDataAdapter sqlAdpter1 = new SqlDataAdapter(deptquery, con);
sqlAdpter1.Fill(dataSet, "tbl_Deprament");
dataSet.Relations.Add("child", dataSet.Tables["tbl_Deprament"].Columns["DeptId"], dataSet.Tables["tbl_Employee"].Columns["DeptId"]);
}
catch (Exception error)
{
LblError.Text = error.Message;
}
return dataSet;
}
Execption :'column' argument cannot be null. Parameter name: column
pls help me i am not getting the relation in tables are depatment:deptid,deptname employee is empid,empname,deptid
AnswerRe: Exception Pin
Guffa9-Oct-07 20:40
Guffa9-Oct-07 20:40 
GeneralRe: Exception Pin
kinnuP9-Oct-07 20:44
kinnuP9-Oct-07 20:44 
AnswerRe: Exception Pin
Spunky Coder9-Oct-07 20:49
Spunky Coder9-Oct-07 20:49 
GeneralRe: Exception Pin
kinnuP9-Oct-07 20:53
kinnuP9-Oct-07 20:53 
Questionwindows authentication in asp.net Pin
mukkanti0079-Oct-07 20:17
mukkanti0079-Oct-07 20:17 
AnswerRe: windows authentication in asp.net Pin
N a v a n e e t h9-Oct-07 21:20
N a v a n e e t h9-Oct-07 21:20 
Questioncollection editor problem Pin
Ujjaval Modi9-Oct-07 20:09
Ujjaval Modi9-Oct-07 20:09 
AnswerRe: collection editor problem Pin
N a v a n e e t h9-Oct-07 21:03
N a v a n e e t h9-Oct-07 21:03 
GeneralRe: collection editor problem Pin
Ujjaval Modi9-Oct-07 21:10
Ujjaval Modi9-Oct-07 21:10 
GeneralRe: collection editor problem Pin
N a v a n e e t h9-Oct-07 21:23
N a v a n e e t h9-Oct-07 21:23 
GeneralRe: collection editor problem Pin
Ujjaval Modi9-Oct-07 21:35
Ujjaval Modi9-Oct-07 21:35 
QuestionWhere can I find .config file? Pin
NanaAM9-Oct-07 19:38
NanaAM9-Oct-07 19:38 
AnswerRe: Where can I find .config file? Pin
Spunky Coder9-Oct-07 19:48
Spunky Coder9-Oct-07 19:48 
QuestionWin32 events in Webforms Pin
honeyss9-Oct-07 19:18
honeyss9-Oct-07 19:18 
AnswerRe: Win32 events in Webforms Pin
Christian Graus9-Oct-07 19:25
protectorChristian Graus9-Oct-07 19:25 
GeneralRe: Win32 events in Webforms Pin
honeyss11-Oct-07 2:43
honeyss11-Oct-07 2:43 
QuestionUser control extend abtract class problem? Pin
bug_aonz9-Oct-07 19:12
bug_aonz9-Oct-07 19:12 

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.