Click here to Skip to main content
16,006,594 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: TEXTBOX to MS-WORD????? Pin
Christian Graus5-May-08 11:15
protectorChristian Graus5-May-08 11:15 
QuestionAutoRefresh an aspx-page Pin
anderslundsgard4-May-08 23:34
anderslundsgard4-May-08 23:34 
AnswerRe: AutoRefresh an aspx-page Pin
Christian Graus4-May-08 23:39
protectorChristian Graus4-May-08 23:39 
AnswerRe: AutoRefresh an aspx-page Pin
N a v a n e e t h5-May-08 0:03
N a v a n e e t h5-May-08 0:03 
GeneralRe: AutoRefresh an aspx-page Pin
Sankar Komma 5-May-08 2:25
Sankar Komma 5-May-08 2:25 
AnswerRe: AutoRefresh an aspx-page Pin
anderslundsgard5-May-08 2:19
anderslundsgard5-May-08 2:19 
QuestionLOCK / UNLOCK in ASP.NET with C# Pin
Karan_TN4-May-08 23:16
Karan_TN4-May-08 23:16 
AnswerRe: LOCK / UNLOCK in ASP.NET with C# Pin
Christian Graus4-May-08 23:21
protectorChristian Graus4-May-08 23:21 
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 

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.