Hi, I have to validate the control in server side and have to find which value is wrong. Ex im passing user name and password. if password is wrong it should find only the password is wrong not the user name.. Please help me..
janani13
Posts
-
Server side validation -
Events are not firinghai, Please make sure that you have included the
if(!IsPostBack) {}
in the page load..
-
How to find the average, worst complexity of a codeHai Radhakrishnan, Thanks for your responce. Can you come again to tell me how it can be represented in Big O notation...
-
How to find the average, worst complexity of a codeHow to find the average, worst complexity of a code?? say for ex,
for i= 1 to n
{}
for j= 1 to i
{
x=x+1}
Please help me ..
-
Problem in converting xml to a datasetNo one will ask question if you pepole answer like this. No one will born with great mind. Behave like a basic human beings.Dont think that all the people would have great knowledge. Dont underestimate others job.Codeproject loses one member... Bye.. These line are given for you people only. Try to read these line before you answer.This is all the members who replied my query.
Apologies for the shouting but this is important. When answering a question please: 1.Read the question carefully 2.Understand that English isn't everyone's first language so be lenient of bad spelling and grammar 3.If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome 4.If the question is inappropriate then click the 'vote to remove message' button Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
-
Problem in converting xml to a datasetThnk u
-
Problem in converting xml to a datasetIs it a answer.. Im nt unwantedly posting the message again and again..
-
Problem in converting xml to a datasetHi all, Im getting the error while converting xml to a dataset.Please help me. Im converting xml file to dataset using the following code.
TextWriter twHistory = new StreamWriter(location + ".xml"); twHistory.WriteLine(XMLdoc); twHistory.Close(); DataSet dsHistoryXml = new DataSet(); dsHistoryXml.ReadXml(location + ".xml");
Cannot add a column named 'PerUser': a nested table with the same name already belongs to this DataTable.
-
Problem in convert xml to datasetIm converting xml file to dataset using the following code.
TextWriter twHistory = new StreamWriter(location + ".xml");
twHistory.WriteLine(XMLdoc);
twHistory.Close();
DataSet dsHistoryXml = new DataSet();
dsHistoryXml.ReadXml(location + ".xml");While reading the xml document the above mentioned error returns.
Cannot add a column named 'PerUser': a nested table with the same name already belongs to this DataTable.
-
Problem in convert xml to datasetHi all, Im getting the error while converting xml to a dataset.Please help me.
Cannot add a column named 'PerUser': a nested table with the same name already belongs to this DataTable.
-
How do I populate a DataSet from a XML string?Ya.. It is in the xml format.Is it possible to assign the xml string into a new xml file.
-
How do I populate a DataSet from a XML string?Sorry i cant get you.
-
HTML FONT<blink><asp:Literal ID="txtuname" Text=" Username" runat="server"></asp:Literal> </blink> I tried its working well.
-
How do I populate a DataSet from a XML string?Hi, I just have the XML code in XMLdoc as string format.I dont have any xml file.
StreamReader reader = new StreamReader(response.GetResponseStream());
string str = reader.ReadLine(); while (str != null) { XMLdoc = XMLdoc + str; Console.WriteLine(str); str = reader.ReadLine(); }
-
FileUpload Control with Progressbar in Asp.netWhat is your problem???
-
HTML FONTJust try it man. The tag wont come in asp.net . But it will work fine.
-
HTML FONTUse Blink tag.
-
How do I populate a DataSet from a XML string?HI, I am having a string which is in xml format. i want to populate a dataset using the string. I used the following code . But it doesnt convert.Please help me.
stream = new StringReader(XMLdoc.ToString());
Text = new XmlTextReader(stream);
dsXml.ReadXml(Text); -
repeater with multiple rowsHow did you bind the repeater control.Have you used #Eval("id") or databinde r.use the same in the linkbutton.
at the codebehind , Use item command method to get the commandargument(e.commandargument).you can now get the id.Now you can update the table.Why you have written the query in the page itself.Please prefer to write stored procedures.
-
repeater with multiple rowsHi, You have to update the table with 'update tb_staff set Active=0 where ID=command argument'. Please send the id of the corresponding record to the link button as commmand argument.