- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 52
- Posts with Downvotes
- 40
- Downvoting Members
- 9
MCTS - BE
- Interests
- Solving puzzles
- PC Specs
- MCTS - BE(CSE)
61 Posted Topics
Re: hey man saw your connection string where your username & pwd and provider | |
Re: [QUOTE=Christos 696;1733768]Hi again my friends... as i said in my first post, i have done the database... for my website, and now i must create the webpage!! the language i must use is "xml", so if you have some sites or pdf files, that i can read to learn how … | |
Re: try Google java script of rtf get script and use it that will work i got same solution some months back | |
Re: [QUOTE=Pgmer;1755034]Get the MAX(ID) from table and then append 0000 to it and show.[/QUOTE] Forgot the one thing to find the length of ID there only easy when you add 10,11...,100,101,....,1000,1001... [CODE] temp_id=string.Empty; for(int i=0;i<(5-id.lenth);i++) { temp_id+="0"; } temp_id+=id; [/CODE] | |
Re: ---sorry previously posted also same i unfortunately did n`t saw that--- select record from database that have the same value as username and pwd if it returns record user authenticated else invalid user | |
Re: where user name | |
Hi friends., I need one help from you all. Actually i am working asp.Net 4.0, i need to specify path in different folder in my project.so, i think if i place server.mappath in web.config is very useful for me how can i place it. tell me any sample or code … | |
Re: why you use strcat() method....you can try use loop read char by char and place in third string | |
Re: Hi Dude., I will tell feature of both of them.Your wish to select which one is best suite you select it ASP.NET is developed by Microsoft technologies it support many scripting languages C#,visual c++,J#,F#,VB.net,etc., but php support one scripting language (java script excluded) php developed by community no standard is … | |
Re: Hi frnd., do you know Google instance search engine how many records it show in first page it may show some lack record discovered in some specified time span but it shows only 1000 results (100 pages) so try to load some record you can split up that some 10 … | |
![]() | Re: hey dude &&-means logical AND operation ||-means logical OR operation give problem is a=true; b=false; c=false then d=( a && b ) || c //a && b-means (true && false) //&&-return true when both input are true here one is true (a) another //one is false(b) this will return false … ![]() |
Hi friends., I am now try to study LINQ in C#.net which book can i refer and that is easy to learn and give perfect example code snippet | |
Re: try it your self we can help when you struggled in half way i can tell what control to use use datagrid or gridview to develop | |
Re: simply use try and catch i think u get db null exception. if u got this error use isnull() method and replace that null value to double you can easily get what you want | |
Re: try ajax with web service or ajax with wcf | |
Re: use session.abandon() method will destroy your session | |
Re: you can use as Json it`s more over easy for you | |
Re: use this will help you [CODE]System.IO.FileStream(server.MapPath("~/Images/" + imageFileName + ".gif",System.IO.FileMode.Open, System.IO.FileAccess.Read);[/CODE] | |
Re: [QUOTE=denmarkstan;1735207]Hello good people, I need to make a debut in hosting asp.net 4.0, please i am looking for asp.net 4.0 free hosting to try out my new asp.net 4.0. please if you know any good one that can give me free trial, do help me here please. Thank you.[/QUOTE] try … | |
Re: try search in Google java script image slider or jquery image slider lot of example you will get | |
Re: You can us following code [CODE] <% cmd="Query" sqldatareader reade=cmd.ExecuteReader() reade.Read() %> <table> //put loop here <tr> <td><%= reade[row_index].getvalue(col_index or col_name)%> </td> <tr> [/CODE] | |
Re: use LINQ to get what you want | |
Re: Please refer the link [URL="http://blog.msdn.com"]blog.msdn.com[/URL] | |
Re: Ya hercles told correct use server.mappath my notification is don`t forgot "~" symbol in front of path [CODE] string path=server.MapPath("~\your_file_name.Extension"); [/CODE] | |
Re: i think you trying to put your on our shoulders.Its your work you only want to work. try module by module that will help you.for any more help try Google or use this forum place your question(Any small or complicate work not full project) we will help you try try … | |
| |
Re: the following link show when you use both [URL="http://http://msdn.microsoft.com/en-us/library/aa479015.aspx"]http://msdn.microsoft.com/en-us/library/aa479015.aspx[/URL] study well you can easily identify your answer | |
Re: hi dude i think there is no table in that db. plz refer proper db accessed another thing is rename dbo.PriceRanges to PriceRanges | |
Re: [CODE] <script lang="javascript"> function hello() { alert("Hello"); } </script> <asp:Button ID="Button1" runat="server" Text="Button" onclientclick="hello" /> [/CODE] Try this code | |
Re: Friend We cant able to find out which one is best all books have some special thing cover so try google books search engine type your title for example "C# programming" it will give result more than ten books try to read at least 2 books Any I suggest For … | |
Re: [CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <script> function checkForInvalid(obj) { if( /[^0-9\-]|-{2,}/gi.test(obj.value) ) { alert("Invalid character in Invoice No.") obj.value = ""; // line added to clear textbox value obj.focus(); // obj.select(); // line removed return false; } return true; … | |
Re: Hi dude., Do you know System.Object is the root class of .net framework from this only all the class are derived. In System.Object ToString() method defined as abstract method because fields in object is not stable format so we must need to override ToString() method to covert object into string | |
Hi friends., Actually I use datagrid to show my result from XML file.I load my data from XML file easily.But i need Sorting method for that and i don`t know how to solve it Please give me solution for that My code is [CODE] Imports System.Data Imports System.Xml Imports System.IO.StringReader … | |
Re: use trigger in database and WCF in front end that will really help you ---try code your self--- -----you learn more----- | |
Re: Hey Dude., First you want to create the Database in SQL SERVER which have same schema of your current Access database Second then replace the name space where you used System.data.OLEDB name space into Syatem.Data.SQLclient third thing change the oledbconnection to SQLconnection , Oledb command to sqlcommand,and oledb related object … | |
Re: In admin page you give the link to registered user then only possible and easy also registered user have user login details in that you put category of user lecturer,student,dept head when lecturer login get detail of reg user to session check in session if lecturer related data loaded then … | |
Re: Use Regular Expression validation (Rejax) using method will help you for server side validation (in method pass the value to method in method verify the regular expr is use req acceted then return true else teturn false) | |
Re: Hey Dude., I think there 2 way to handle this use try catch block on Execute scalar function if DBexception occurs in catch block manually assigning some value to MaxValue Another way place isnull() function in query - I am not sure about secound method I am 100% sure 1st … | |
Re: No dude there is any Conversion tool to VB.net to asp.net We only have VB.net to C# net tool so keep your work to done | |
Re: Hey dude ! If you done SEO for your site save that meta data to your own table in database when user search keyword in search control you search that meta data (use [B]%like%[/B] in query)and take the corresponding page name show those result in hyperlink which link user need … | |
Re: hye man which line you this error 1. if in this [CODE] if (Session["MyCart"] != null) { if (Session["MyCart"].GetType().Name.StartsWith("List")) { cart = (List<Cart>)Session["MyCart"]; } }[/CODE] means first you want to assign session value or use try catch 2.if in another part means fully check all objects having references created using … | |
Re: hey Dude You must know 2 things 1. C language does not depend on OOP it based on Structured programming 2. C language does not have Destractor because it did not have any class (i.e Not oop lang) You can try in C# language to perform destractor like this class … | |
Re: Hey dude Return()--function used to return the [B]single[/B] (note:only one) value to the calling method MessageBox.Show()--use To Create a new window that display which message we gave as input when we press ok button in that window window will closed it is precreated template for message box Retern-- may be … | |
Re: For [B]Peek[/B]-Returns the next available character but does not consume it.-immediately you call this once again returns same value because position not moved [B]Read[/B]-Reads the next character from the input stream and advances the character position by one character. -imediately you call this once again returns different (next) value because … | |
Re: hey dude that will be error because you can`t able to convert (or parse) string in to number because default button name button<count> | |
Re: Hey dude., You first Know one thing All thing have one finite limit in system that same way URL also have that you only able to create at max (i am not clear about this may 128 or 256 character) only so making infinite URL is not possible. You can … | |
Re: Hey dude You can`t Properly created object for that instance.Please Check object properly created using new keyword like instances class, text box ,all controls |
The End.