Click here to Skip to main content
16,012,316 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: alignment of control changes in visual studio.net Pin
koolprasad200318-Jul-07 0:53
professionalkoolprasad200318-Jul-07 0:53 
QuestionForm View Control Pin
AvidOn-Tech18-Jul-07 0:23
AvidOn-Tech18-Jul-07 0:23 
Questionhtml code to normal text Pin
Sree Nivas18-Jul-07 0:17
Sree Nivas18-Jul-07 0:17 
AnswerRe: html code to normal text Pin
Eduard Keilholz18-Jul-07 1:42
Eduard Keilholz18-Jul-07 1:42 
QuestionSeperate cache variable for each instances of an application Pin
anujose18-Jul-07 0:15
anujose18-Jul-07 0:15 
AnswerRe: Seperate cache variable for each instances of an application Pin
DavieL18-Jul-07 1:08
DavieL18-Jul-07 1:08 
GeneralRe: Seperate cache variable for each instances of an application Pin
anujose18-Jul-07 1:12
anujose18-Jul-07 1:12 
GeneralRe: Seperate cache variable for each instances of an application Pin
DavieL18-Jul-07 5:07
DavieL18-Jul-07 5:07 
This may not be elegent but could you stick the dataset into the cache and use the datatable default view Rowfilter property to get the user specific stuff?

private DataView getUserDataFromCache(string user)
{
DataView dv = Cache["Dataset"].Tables[0].DefaultView;
dv.RowFilter="UserID='" + userid + "'";
return dv;


}


QuestionEXPIRY DATE REMINDER Pin
Manish Partey18-Jul-07 0:13
Manish Partey18-Jul-07 0:13 
AnswerRe: EXPIRY DATE REMINDER Pin
Manas Bhardwaj18-Jul-07 0:38
professionalManas Bhardwaj18-Jul-07 0:38 
Questiondeveloping a 5 page site Pin
Dunc093618-Jul-07 0:08
Dunc093618-Jul-07 0:08 
AnswerRe: developing a 5 page site Pin
Eduard Keilholz18-Jul-07 1:43
Eduard Keilholz18-Jul-07 1:43 
AnswerRe: developing a 5 page site Pin
Sandeep Kumar18-Jul-07 4:11
Sandeep Kumar18-Jul-07 4:11 
QuestionConvert a Number to ASCII equivalent Char Pin
Amit.Amit.Amit...17-Jul-07 23:51
Amit.Amit.Amit...17-Jul-07 23:51 
AnswerRe: Convert a Number to ASCII equivalent Char Pin
N a v a n e e t h18-Jul-07 0:29
N a v a n e e t h18-Jul-07 0:29 
GeneralRe: Convert a Number to ASCII equivalent Char Pin
Amit.Amit.Amit...18-Jul-07 1:12
Amit.Amit.Amit...18-Jul-07 1:12 
Questionhow to solved server 500 error Pin
Piyush Vardhan Singh17-Jul-07 23:23
Piyush Vardhan Singh17-Jul-07 23:23 
AnswerRe: how to solved server 500 error Pin
SHatchard17-Jul-07 23:36
SHatchard17-Jul-07 23:36 
AnswerRe: how to solved server 500 error Pin
chapathi17-Jul-07 23:38
chapathi17-Jul-07 23:38 
GeneralRe: how to solved server 500 error Pin
Piyush Vardhan Singh18-Jul-07 0:49
Piyush Vardhan Singh18-Jul-07 0:49 
QuestionHow can i make licenseing for Web Application in ASP.NET Pin
sachinpatel1617-Jul-07 23:07
sachinpatel1617-Jul-07 23:07 
AnswerRe: How can i make licenseing for Web Application in ASP.NET Pin
N a v a n e e t h17-Jul-07 23:19
N a v a n e e t h17-Jul-07 23:19 
GeneralRe: How can i make licenseing for Web Application in ASP.NET Pin
sachinpatel1617-Jul-07 23:31
sachinpatel1617-Jul-07 23:31 
GeneralRe: How can i make licenseing for Web Application in ASP.NET Pin
N a v a n e e t h17-Jul-07 23:56
N a v a n e e t h17-Jul-07 23:56 
Questionhow can i handle mutliple datagrid events? Pin
boyindie17-Jul-07 22:59
boyindie17-Jul-07 22:59 

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.