Click here to Skip to main content
15,889,200 members
Home / Discussions / C#
   

C#

 
AnswerRe: Unable to find the report in the manifest resources. Please build the project, and try again Pin
bnvrkv0912-Oct-09 0:14
bnvrkv0912-Oct-09 0:14 
AnswerRe: Unable to find the report in the manifest resources. Please build the project, and try again Pin
Said Ali Jalali15-Jan-10 0:15
Said Ali Jalali15-Jan-10 0:15 
AnswerRe: Unable to find the report in the manifest resources. Please build the project, and try again Pin
randu200519-Apr-10 7:57
randu200519-Apr-10 7:57 
Question[Message Deleted] Pin
kKamel6-Jul-09 11:37
kKamel6-Jul-09 11:37 
AnswerIgnore repost Pin
Manas Bhardwaj6-Jul-09 11:42
professionalManas Bhardwaj6-Jul-09 11:42 
QuestionCase sensitve Column Pin
kKamel6-Jul-09 11:31
kKamel6-Jul-09 11:31 
AnswerRe: Case sensitve Column Pin
Manas Bhardwaj6-Jul-09 11:44
professionalManas Bhardwaj6-Jul-09 11:44 
GeneralRe: Case sensitve Column Pin
kKamel6-Jul-09 11:47
kKamel6-Jul-09 11:47 
DataSet ds = new DataSet();
DataTable dt = new DataTable();
string xmlPath=Server.MapPath("/Database/Credential.xml");
ds.ReadXml(xmlPath);
dt=ds.Tables[0];
DataView dv = new DataView();
dt=ds.Tables[0];
dv = dt.DefaultView;
//dv.Table.Columns["password"].
//dv.Table.Columns["username"].Table.CaseSensitive = false;

string rowFilter = "username = '"+this.txtUsername.Text+"' And password = '"+txtPassword.Text+"'";
dv.RowFilter=rowFilter;
//dt=(DataTable)dv;
if(dv.ToTable().Rows.Count==1)
Response.Write("<script>alert('Meche el 7al');</script>");

I want to check for case sensitive password column only
GeneralRe: Case sensitve Column Pin
Manas Bhardwaj6-Jul-09 12:02
professionalManas Bhardwaj6-Jul-09 12:02 
GeneralRe: Case sensitve Column Pin
kKamel6-Jul-09 12:06
kKamel6-Jul-09 12:06 
GeneralRe: Case sensitve Column Pin
kKamel6-Jul-09 12:36
kKamel6-Jul-09 12:36 
AnswerRe: Case sensitve Column Pin
Ennis Ray Lynch, Jr.6-Jul-09 12:42
Ennis Ray Lynch, Jr.6-Jul-09 12:42 
QuestionDesign Ideas / nested DataGridView?? Pin
Muammar©6-Jul-09 10:46
Muammar©6-Jul-09 10:46 
AnswerRe: Design Ideas / nested DataGridView?? Pin
Mycroft Holmes6-Jul-09 19:13
professionalMycroft Holmes6-Jul-09 19:13 
GeneralRe: Design Ideas / nested DataGridView?? Pin
kKamel6-Jul-09 22:36
kKamel6-Jul-09 22:36 
GeneralRe: Design Ideas / nested DataGridView?? Pin
Mycroft Holmes6-Jul-09 23:09
professionalMycroft Holmes6-Jul-09 23:09 
GeneralRe: Design Ideas / nested DataGridView?? Pin
Mohammad Mahdipour20-Oct-09 19:26
Mohammad Mahdipour20-Oct-09 19:26 
GeneralRe: Design Ideas / nested DataGridView?? Pin
Mycroft Holmes21-Oct-09 0:23
professionalMycroft Holmes21-Oct-09 0:23 
QuestionMessage Removed Pin
6-Jul-09 10:40
professionalN_tro_P6-Jul-09 10:40 
AnswerRe: Retrieve the PK after an add into an in memory DataTable Pin
Ennis Ray Lynch, Jr.6-Jul-09 12:44
Ennis Ray Lynch, Jr.6-Jul-09 12:44 
GeneralRe: Retrieve the PK after an add into an in memory DataTable Pin
Mycroft Holmes6-Jul-09 19:16
professionalMycroft Holmes6-Jul-09 19:16 
AnswerRe: Retrieve the PK after an add into an in memory DataTable Pin
zlezj6-Jul-09 20:43
zlezj6-Jul-09 20:43 
Questioncode behind method Pin
zoyakhan6-Jul-09 8:00
zoyakhan6-Jul-09 8:00 
AnswerRe: code behind method Pin
Pete O'Hanlon6-Jul-09 9:13
mvePete O'Hanlon6-Jul-09 9:13 
Questionthis.NotifyIcon.BalloonTipShown not executing Pin
ark_mage26-Jul-09 7:56
ark_mage26-Jul-09 7:56 

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.