Click here to Skip to main content
15,921,646 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to open one datgrid in another datagrid Pin
Anil Chauhan21-May-09 21:36
Anil Chauhan21-May-09 21:36 
QuestionHelp with Headers Please Header.Controls.RemoveAt() Header.Controls.Add Dont Work... Pin
ortaparmak4-May-09 19:45
ortaparmak4-May-09 19:45 
QuestionProblem With window.createpopup() in java script Pin
prabhakar dwivedi4-May-09 19:18
prabhakar dwivedi4-May-09 19:18 
QuestionHow to use the tab controls Pin
cspriya4-May-09 16:13
cspriya4-May-09 16:13 
AnswerRe: How to use the tab controls Pin
Christian Graus4-May-09 17:45
protectorChristian Graus4-May-09 17:45 
AnswerRe: How to use the tab controls Pin
saanj4-May-09 19:28
saanj4-May-09 19:28 
GeneralRe: How to use the tab controls Pin
Abhijit Jana4-May-09 20:27
professionalAbhijit Jana4-May-09 20:27 
AnswerRe: How to use the tab controls Pin
Uma J5-May-09 0:18
Uma J5-May-09 0:18 
Set a property or View State,

public string Mode
{
get
{
object o = ViewState["Mode"];
if (o == null)
return String.Empty;
else
return (string)o;
}
set
{
ViewState["Mode"] = value;
}
}

when clicking the Edit tab give the Mode as Mode = "E"
when clicking the View tab give the Mode as Mode = "V"

Now write the code based on the mode like,
if(Mode == "E")
{
//Your code goes here....
}

if(Mode == "V")
{
//Your code goes here....
}
Questiontreeview Pin
Malik11224-May-09 14:53
Malik11224-May-09 14:53 
AnswerRe: treeview Pin
Christian Graus4-May-09 15:47
protectorChristian Graus4-May-09 15:47 
AnswerRe: treeview Pin
saanj4-May-09 19:30
saanj4-May-09 19:30 
QuestionEnterprise Library is poo and I hate it. Pin
gantww4-May-09 12:32
gantww4-May-09 12:32 
AnswerRe: Enterprise Library is poo and I hate it - Update Pin
gantww4-May-09 13:16
gantww4-May-09 13:16 
Questionhow add dropdown in infragistic grid Pin
Suhail Ali4-May-09 10:32
Suhail Ali4-May-09 10:32 
AnswerRe: how add dropdown in infragistic grid Pin
Christian Graus4-May-09 17:46
protectorChristian Graus4-May-09 17:46 
QuestionDisplaying 10000 Images from sql srv on load Pin
j1stleger4-May-09 9:59
j1stleger4-May-09 9:59 
AnswerRe: Displaying 10000 Images from sql srv on load Pin
Christian Graus4-May-09 11:38
protectorChristian Graus4-May-09 11:38 
QuestionAudio and Video... Pin
Jamal Abdul Nasir4-May-09 9:05
Jamal Abdul Nasir4-May-09 9:05 
AnswerRe: Audio and Video... Pin
Yusuf4-May-09 9:31
Yusuf4-May-09 9:31 
GeneralRe: Audio and Video... Pin
Jamal Abdul Nasir4-May-09 11:06
Jamal Abdul Nasir4-May-09 11:06 
GeneralRe: Audio and Video... Pin
Christian Graus4-May-09 11:38
protectorChristian Graus4-May-09 11:38 
QuestionRoles - Getting redirected to Login control - help! Pin
Member 54067794-May-09 5:55
Member 54067794-May-09 5:55 
QuestionCustom web part connection to report...Filter values not refreshed. Pin
Swetha Sankaran4-May-09 5:50
Swetha Sankaran4-May-09 5:50 
AnswerRe: Custom web part connection to report...Filter values not refreshed. Pin
Swetha Sankaran4-May-09 8:37
Swetha Sankaran4-May-09 8:37 
GeneralRe: Custom web part connection to report...Filter values not refreshed. Pin
Swetha Sankaran4-May-09 10:12
Swetha Sankaran4-May-09 10:12 

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.