Click here to Skip to main content
15,917,320 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Display a datagridview with a certain columns when web application runs Pin
sashidhar29-Nov-09 19:55
sashidhar29-Nov-09 19:55 
GeneralRe: Display a datagridview with a certain columns when web application runs Pin
nainakarri29-Nov-09 17:27
nainakarri29-Nov-09 17:27 
Questiondatagridview-Win Form Pin
venkat_kts29-Nov-09 16:32
venkat_kts29-Nov-09 16:32 
AnswerWrong Forum Pin
dan!sh 29-Nov-09 16:39
professional dan!sh 29-Nov-09 16:39 
AnswerRe: datagridview-Win Form [modified] Pin
sashidhar29-Nov-09 17:12
sashidhar29-Nov-09 17:12 
GeneralRe: datagridview-Win Form Pin
dan!sh 29-Nov-09 17:45
professional dan!sh 29-Nov-09 17:45 
Questionsearch query first letter lookup Pin
Bev Robins29-Nov-09 0:33
Bev Robins29-Nov-09 0:33 
AnswerRe: search query first letter lookup Pin
N a v a n e e t h29-Nov-09 16:31
N a v a n e e t h29-Nov-09 16:31 
GeneralRe: search query first letter lookup Pin
Bev Robins30-Nov-09 2:04
Bev Robins30-Nov-09 2:04 
GeneralRe: search query first letter lookup Pin
David Mujica30-Nov-09 3:40
David Mujica30-Nov-09 3:40 
QuestionAuthorize filter with Roles? Pin
wardy_boy197228-Nov-09 12:08
wardy_boy197228-Nov-09 12:08 
QuestionOutput aspx from ashx Pin
Matt Cavanagh28-Nov-09 11:56
Matt Cavanagh28-Nov-09 11:56 
AnswerRe: Output aspx from ashx Pin
Matt Cavanagh28-Nov-09 21:41
Matt Cavanagh28-Nov-09 21:41 
Questionshow and hide gridview cells controls [modified] Pin
angle5728-Nov-09 0:31
angle5728-Nov-09 0:31 
AnswerRe: show and hide gridview cells controls Pin
Not Active28-Nov-09 4:47
mentorNot Active28-Nov-09 4:47 
AnswerRe: show and hide gridview cells controls Pin
April Fans1-Dec-09 22:40
April Fans1-Dec-09 22:40 
Hi,

you can try this:

protected void Page_Load(object sender, EventArgs e)
{
if (Session["buttonnamevisible"] == "false")
Button1.Visible = false;
else
Button1.Visible = true;
}

protected void Button1_Click(object sender, EventArgs e)
{
Button1.Visible = false;
Session["buttonnamevisible"] = "false";
}
April

Comm100 - Leading Live Chat Software Provider


modified 27-May-14 21:47pm.

GeneralRe: show and hide gridview cells controls Pin
angle573-Dec-09 1:05
angle573-Dec-09 1:05 
Questiontransfer a key value from a page to a popup page "on selected index change" of a gridview. Pin
saurabh8april28-Nov-09 0:03
saurabh8april28-Nov-09 0:03 
AnswerRe: transfer a key value from a page to a popup page "on selected index change" of a gridview. Pin
Not Active28-Nov-09 4:46
mentorNot Active28-Nov-09 4:46 
AnswerRe: transfer a key value from a page to a popup page "on selected index change" of a gridview. Pin
carlecomm2-Dec-09 22:49
carlecomm2-Dec-09 22:49 
GeneralRe: transfer a key value from a page to a popup page "on selected index change" of a gridview. Pin
saurabh8april7-Dec-09 0:47
saurabh8april7-Dec-09 0:47 
QuestionTrying to implement an old chat application into MVC Pin
wardy_boy197227-Nov-09 23:44
wardy_boy197227-Nov-09 23:44 
AnswerRe: Trying to implement an old chat application into MVC Pin
Not Active28-Nov-09 4:43
mentorNot Active28-Nov-09 4:43 
Questionhow to cretae web page more efficiant Pin
fak.kumar27-Nov-09 19:05
fak.kumar27-Nov-09 19:05 
AnswerRe: how to cretae web page more efficiant Pin
sashidhar27-Nov-09 19:48
sashidhar27-Nov-09 19:48 

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.