Click here to Skip to main content
15,903,175 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPublish/upload website Pin
mohini102531-Jan-07 3:07
mohini102531-Jan-07 3:07 
AnswerRe: Publish/upload website Pin
Not Active31-Jan-07 3:44
mentorNot Active31-Jan-07 3:44 
GeneralRe: Publish/upload website Pin
sanaziuse31-Jan-07 7:16
sanaziuse31-Jan-07 7:16 
QuestionGridview, EditItem template as DropDownList ... how do I get update working properly? Pin
Red_Wizard_Shot_The_Food31-Jan-07 3:03
Red_Wizard_Shot_The_Food31-Jan-07 3:03 
AnswerRe: Gridview, EditItem template as DropDownList ... how do I get update working properly? Pin
minhpc_bk31-Jan-07 5:02
minhpc_bk31-Jan-07 5:02 
QuestionReceiving script error when i access the ClientID of items in Repeater control through javascript Pin
priyavu31-Jan-07 0:37
priyavu31-Jan-07 0:37 
AnswerRe: Receiving script error when i access the ClientID of items in Repeater control through javascript Pin
Guffa31-Jan-07 1:51
Guffa31-Jan-07 1:51 
GeneralRight answer is there Re: Receiving script error when i access the ClientID of items in Repeater control through javascript Pin
Sylvester george31-Jan-07 2:02
Sylvester george31-Jan-07 2:02 
Add the attribute in the following way


private void Repeater1_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e)
{
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
HtmlInputText txt = (HtmlInputText)e.Item.FindControl("txtOnNBH");
txt.Attributes.Add("onchange","fun('" + Repeater1.ClientID + "')");
}
}

Regards,
Sylvester G
Senior Software Engineer
Xoriant Solutions
QuestionHow to bring the Ms-Access DB record to a DropdownList? Pin
Praveen 12331-Jan-07 0:31
Praveen 12331-Jan-07 0:31 
AnswerRe: How to bring the Ms-Access DB record to a DropdownList? Pin
krishnakumark31-Jan-07 1:45
krishnakumark31-Jan-07 1:45 
QuestionRe: How to bring the Ms-Access DB record to a DropdownList? [modified] Pin
Praveen 12331-Jan-07 17:04
Praveen 12331-Jan-07 17:04 
AnswerRe: How to bring the Ms-Access DB record to a DropdownList? Pin
krishnakumark31-Jan-07 19:27
krishnakumark31-Jan-07 19:27 
GeneralRe: How to bring the Ms-Access DB record to a DropdownList? Pin
Praveen 12331-Jan-07 23:31
Praveen 12331-Jan-07 23:31 
QuestionCrystal Report in ASP.NET 2.0 (VB) Pin
varshavmane31-Jan-07 0:12
varshavmane31-Jan-07 0:12 
QuestionAdd a extra row to a datagrid which you can edit an bind Pin
peggy70630-Jan-07 23:31
peggy70630-Jan-07 23:31 
QuestionDynamically hide column in Repeater control Pin
Atul Kharecha30-Jan-07 23:21
Atul Kharecha30-Jan-07 23:21 
AnswerRe: Dynamically hide column in Repeater control Pin
minhpc_bk31-Jan-07 4:56
minhpc_bk31-Jan-07 4:56 
QuestionCrystal Reports in asp.net Pin
Kissy1630-Jan-07 22:06
Kissy1630-Jan-07 22:06 
AnswerRe: Crystal Reports in asp.net Pin
Sylvester george30-Jan-07 22:52
Sylvester george30-Jan-07 22:52 
Questionhow can insert an image path using formview control Pin
chohanpk30-Jan-07 21:13
chohanpk30-Jan-07 21:13 
AnswerRe: how can insert an image path using formview control Pin
minhpc_bk31-Jan-07 4:54
minhpc_bk31-Jan-07 4:54 
QuestionASP.Net Pin
Amit.Amit.Amit...30-Jan-07 21:11
Amit.Amit.Amit...30-Jan-07 21:11 
AnswerRe: ASP.Net Pin
Sandeep Akhare30-Jan-07 23:19
Sandeep Akhare30-Jan-07 23:19 
AnswerRe: ASP.Net Pin
MohammadYousef31-Jan-07 3:49
MohammadYousef31-Jan-07 3:49 
Questionerror in textbox and table Pin
sanaziuse30-Jan-07 21:01
sanaziuse30-Jan-07 21:01 

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.