Click here to Skip to main content
15,892,809 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: how to call a method of one user control in another user control Pin
lakshmichawala14-Jul-09 21:18
lakshmichawala14-Jul-09 21:18 
GeneralRe: how to call a method of one user control in another user control Pin
Vimalsoft(Pty) Ltd14-Jul-09 21:54
professionalVimalsoft(Pty) Ltd14-Jul-09 21:54 
GeneralRe: how to call a method of one user control in another user control Pin
DoctorMick15-Jul-09 1:07
DoctorMick15-Jul-09 1:07 
QuestionHow to get back up from database using asp .net & C# Pin
Suhachi14-Jul-09 18:20
Suhachi14-Jul-09 18:20 
AnswerRe: How to get back up from database using asp .net & C# Pin
Abhijit Jana14-Jul-09 18:28
professionalAbhijit Jana14-Jul-09 18:28 
QuestionRe: How to get back up from database using asp .net & C# Pin
Suhachi14-Jul-09 22:14
Suhachi14-Jul-09 22:14 
AnswerRe: How to get back up from database using asp .net & C# Pin
ScottM115-Jul-09 22:16
ScottM115-Jul-09 22:16 
QuestionProblem with retrieving information from Data Pin
Sider8914-Jul-09 9:19
Sider8914-Jul-09 9:19 
I have table like that:

wel here is Event

void grid_RowCreated(object sender, GridViewRowEventArgs e) {
if (e.Row.DataItem == null) {
return;
}
LinkButton cmdCity = (LinkButton)e.Row.FindControl("cmdCity");
if (cmdCity != null) {
int id = (int)grid.DataKeys[e.Row.RowIndex].Value;
cmdCity.CommandArgument = id.ToString();
}
}


and this event retrieves from data only one field concrete ID
I want to retriwe another ID's to like countryid, regionid or etc.

How do that??

C# Developer

AnswerRe: Problem with retrieving information from Data Pin
Not Active14-Jul-09 10:59
mentorNot Active14-Jul-09 10:59 
AnswerRe: Problem with retrieving information from Data Pin
Christian Graus14-Jul-09 11:54
protectorChristian Graus14-Jul-09 11:54 
AnswerRe: Problem with retrieving information from Data Pin
Sider8914-Jul-09 20:17
Sider8914-Jul-09 20:17 
QuestionSecuring Web Pages in ASP.NET Pin
chintanstrings14-Jul-09 9:12
chintanstrings14-Jul-09 9:12 
AnswerRe: Securing Web Pages in ASP.NET Pin
Brij14-Jul-09 9:20
mentorBrij14-Jul-09 9:20 
AnswerRe: Securing Web Pages in ASP.NET Pin
Abhijit Jana14-Jul-09 9:24
professionalAbhijit Jana14-Jul-09 9:24 
GeneralRe: Securing Web Pages in ASP.NET Pin
chintanstrings14-Jul-09 9:32
chintanstrings14-Jul-09 9:32 
GeneralRe: Securing Web Pages in ASP.NET Pin
Abhijit Jana14-Jul-09 9:42
professionalAbhijit Jana14-Jul-09 9:42 
Questionhow to make source code uneditable Pin
ashutosh_karna14-Jul-09 8:39
ashutosh_karna14-Jul-09 8:39 
AnswerRe: how to make source code uneditable Pin
Abhijit Jana14-Jul-09 8:45
professionalAbhijit Jana14-Jul-09 8:45 
GeneralRe: how to make source code uneditable Pin
N a v a n e e t h14-Jul-09 16:16
N a v a n e e t h14-Jul-09 16:16 
GeneralRe: how to make source code uneditable Pin
Abhijit Jana14-Jul-09 20:52
professionalAbhijit Jana14-Jul-09 20:52 
AnswerRe: how to make source code uneditable Pin
Brij14-Jul-09 8:51
mentorBrij14-Jul-09 8:51 
AnswerRe: how to make source code uneditable Pin
Christian Graus14-Jul-09 11:56
protectorChristian Graus14-Jul-09 11:56 
AnswerRe: how to make source code uneditable Pin
Curtis Schlak.14-Jul-09 16:42
Curtis Schlak.14-Jul-09 16:42 
QuestionFetching value from textbox dyanamically Pin
ashutosh_karna14-Jul-09 8:27
ashutosh_karna14-Jul-09 8:27 
AnswerRe: Fetching value from textbox dyanamically Pin
Brij14-Jul-09 8:35
mentorBrij14-Jul-09 8:35 

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.