Click here to Skip to main content
15,896,063 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: LOCK / UNLOCK in ASP.NET with C# Pin
N a v a n e e t h4-May-08 23:48
N a v a n e e t h4-May-08 23:48 
QuestionRe: LOCK / UNLOCK in ASP.NET with C# Pin
Karan_TN5-May-08 1:42
Karan_TN5-May-08 1:42 
Questionhow to disable post method with in form tag in .net with c# Pin
sugunavathysubramanian4-May-08 23:14
sugunavathysubramanian4-May-08 23:14 
AnswerRe: how to disable post method with in form tag in .net with c# Pin
N a v a n e e t h4-May-08 23:22
N a v a n e e t h4-May-08 23:22 
AnswerRe: how to disable post method with in form tag in .net with c# Pin
Christian Graus4-May-08 23:22
protectorChristian Graus4-May-08 23:22 
GeneralRe: how to disable post method with in form tag in .net with c# Pin
sugunavathysubramanian5-May-08 0:09
sugunavathysubramanian5-May-08 0:09 
GeneralRe: how to disable post method with in form tag in .net with c# Pin
N a v a n e e t h5-May-08 0:18
N a v a n e e t h5-May-08 0:18 
QuestionHow to add style dynamically in cs file and remove the border? Pin
chakran4-May-08 23:04
chakran4-May-08 23:04 
Hi,
I have added radion buttons dynamically using RadionButtonList control. am facing small problem. Radio buttons appears with line border. How to remove the border? below is the code I tried but no result.
ListItem li = null;
if (dvForDisplay.Count > 0)
{
rdb = new RadioButton();
rdl = new RadioButtonList();
panelRechargeOptions.Controls.Clear();
for (int i = 0; i < dvForDisplay.Count; i++)
{
li =new ListItem();
li.Value = dvForDisplay[i]["RadioButtonId"].ToString()+i.ToString();
li.Text = dvForDisplay[i]["RadioButtonText"].ToString();
li.Attributes.Add("onClick", "javascript:AmountToCharge('" + li.Text + "','" + strQuoteCurrency + "');");

li.Attributes.CssStyle.Value = BorderStyle.None.ToString();

rdl.Items.Add(li);
rdl.RepeatDirection = RepeatDirection.Horizontal;
rdl.Style.Add(HtmlTextWriterStyle.BorderWidth, "0px");
panelRechargeOptions.Controls.Add(rdl);
}
}
AnswerRe: How to add style dynamically in cs file and remove the border? Pin
RajeevKumarSharma5-May-08 0:30
RajeevKumarSharma5-May-08 0:30 
GeneralRe: How to add style dynamically in cs file and remove the border? Pin
chakran5-May-08 0:39
chakran5-May-08 0:39 
QuestionServer to client communication Pin
Joshi Rahul4-May-08 23:00
Joshi Rahul4-May-08 23:00 
AnswerRe: Server to client communication Pin
N a v a n e e t h4-May-08 23:19
N a v a n e e t h4-May-08 23:19 
GeneralRe: Server to client communication Pin
Joshi Rahul6-May-08 1:31
Joshi Rahul6-May-08 1:31 
QuestionSession becomes null in ASP.NET 2.0 Pin
King Shez4-May-08 22:26
King Shez4-May-08 22:26 
AnswerRe: Session becomes null in ASP.NET 2.0 Pin
Vasudevan Deepak Kumar4-May-08 22:28
Vasudevan Deepak Kumar4-May-08 22:28 
GeneralRe: Session becomes null in ASP.NET 2.0 Pin
King Shez4-May-08 22:49
King Shez4-May-08 22:49 
QuestionJavascript Pin
senthilsstil4-May-08 22:19
senthilsstil4-May-08 22:19 
AnswerRe: Javascript Pin
Vasudevan Deepak Kumar4-May-08 22:25
Vasudevan Deepak Kumar4-May-08 22:25 
GeneralRe: Javascript Pin
senthilsstil4-May-08 23:00
senthilsstil4-May-08 23:00 
AnswerRe: Javascript Pin
Christian Graus4-May-08 22:59
protectorChristian Graus4-May-08 22:59 
AnswerRe: Javascript Pin
N a v a n e e t h4-May-08 23:01
N a v a n e e t h4-May-08 23:01 
QuestionGenerating HTML Reports in C# Pin
Aswanth4-May-08 22:03
Aswanth4-May-08 22:03 
AnswerRe: Generating HTML Reports in C# Pin
Vasudevan Deepak Kumar4-May-08 22:26
Vasudevan Deepak Kumar4-May-08 22:26 
GeneralRe: Generating HTML Reports in C# Pin
Aswanth4-May-08 23:47
Aswanth4-May-08 23:47 
QuestionAdding Dynamic Radio buttons in panel control Pin
chakran4-May-08 21:33
chakran4-May-08 21:33 

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.