Search Results

Showing results 1 to 30 of 30
Search took 0.01 seconds.
Search: Posts Made By: dilipv
Forum: PHP Dec 30th, 2008
Replies: 13
Views: 691
Posted By dilipv
hi there,
i think you need to make sure image is properly uploaded in to the folder. For this you can use
$result = move_uploaded_file($TempFileName, $FilePath);

if (!$result)
{...
Forum: PHP Dec 30th, 2008
Replies: 5
Views: 472
Posted By dilipv
hi there,
this is dilip here,
i have seen that website but not able to figure out what he/she had done, because he/she uses large amount of javascript code in web page itself. Which is not a good...
Forum: PHP Dec 29th, 2008
Replies: 3
Solved: date problem
Views: 429
Posted By dilipv
First you are in DaniWeb dont ever ask for any code. Ask your doubts.
Now for your problem
If you wanna user to choose a date then use following
Download DataTimePicker.js a javascript...
Forum: PHP Dec 29th, 2008
Replies: 4
Views: 444
Posted By dilipv
hi, i think you have problem with primary key after postback it wont get primary key by which it will make updation , so use
<input type="hidden" name="pno" value="<?php echo $pno; ?>" />
and also...
Forum: PHP Dec 29th, 2008
Replies: 6
Views: 946
Posted By dilipv
<form>
<table border="0" width="100%">
<tr>
<td align="right" width="60%"><select name="select" size="1" onChange='submit()'>
<option value='0'>Select Category</option>
<?...
Forum: PHP Dec 29th, 2008
Replies: 2
Views: 1,295
Posted By dilipv
hi there,
you get error at this line becuase in mysql_fetch_array($result) function can takes only result variable which holds output generated by $result=mysql_query($qry);
hope you understand....
Forum: ASP.NET Feb 20th, 2008
Replies: 3
Views: 8,447
Posted By dilipv
hi firebirds98,
You can populate DropDownlList from Sql database as follows.

connection_object.start_connection()
datareader_object = connection_object.executequery("SELECT city_name from City")...
Forum: ASP.NET Feb 20th, 2008
Replies: 6
Views: 4,583
Posted By dilipv
hi ebabes,
I think problem exists in your connection string.Since you are using C# as your coding language then due to Escape sequence ('\') problem your connection string is not proper.
It should...
Forum: ASP.NET Feb 20th, 2008
Replies: 2
Views: 4,526
Posted By dilipv
hi mukund_007,
For doing the same you need to add Textbox, DropDownList and Button and datagrid to aspx page as follows.

<asp: TextBox ID ="txtBox" runat ="server"></asp: TextBox>
<asp:...
Forum: ASP Feb 18th, 2008
Replies: 3
Views: 1,018
Posted By dilipv
hi bungek84,
You can use MySql with ASP.net easily. There are lots of article's you can learn from there.
But for your help please visit the given link.
...
Forum: ASP Feb 18th, 2008
Replies: 15
Views: 2,703
Posted By dilipv
hi johnny.g,
There are several article's were available , make Googled and you can definately got some solution on it.
I found out two article based on it. Just visit the link.
...
Forum: ASP.NET Feb 18th, 2008
Replies: 5
Views: 6,511
Posted By dilipv
hi Dano56,
I think answer for your query is QueryString OR Session. But according to me prefer querystring so, i given following example as follows.
For ex. You want to go from Page1 on click...
Forum: ASP.NET Feb 14th, 2008
Replies: 5
Views: 3,226
Posted By dilipv
Hi u4umang2001,
Just check this link, which contains good article. Hope this will help you.
...
Forum: ASP.NET Feb 14th, 2008
Replies: 2
Views: 788
Posted By dilipv
Hi david_bronsky,
You are talking about Querystring OR URL Rewriting. Querystring is some information attached on the end of the URL after question mark sign. For ex...
Forum: ASP.NET Feb 14th, 2008
Replies: 2
Views: 496
Posted By dilipv
hi u4umang2001,

Your query is little bit simple but you should try first using various article. These articles can be easily found using Google. If you want to learn things, you should try atleast...
Forum: ASP.NET Feb 14th, 2008
Replies: 8
Views: 2,473
Posted By dilipv
Hi psathish2,

First of all remove the above quote because it is used when there is no rows are returned, but you are using SELECT statement which returns some number of rows.

Secondly your...
Forum: ASP.NET Feb 14th, 2008
Replies: 1
Views: 1,318
Posted By dilipv
Hi u4umang2001,
Declaring a text variable in stored procedure is easy. Following example shows as below.

CREATE PROCEDURE sp_myStoredProcedure
@myString varchar(100)
AS
.....
Go

For...
Forum: ASP.NET Feb 13th, 2008
Replies: 21
Views: 2,986
Posted By dilipv
hi majestic0110,
There is ASP Login Control exists in VS 2005 OR VS 2008, but you still want to use traditional database technique to design login control. For this, i have one article which help's ...
Forum: ASP.NET Feb 13th, 2008
Replies: 8
Views: 906
Posted By dilipv
hi ebabes,
I think you needed website counter which simply tells number of times website has been visited rather than individual page visit counter. So, you have 2 alternatives to store Visit Count...
Forum: ASP.NET Feb 13th, 2008
Replies: 5
Views: 18,149
Posted By dilipv
hi Slade,
According to me URL rewriting can help in solving your problem. Just check following URL

http://forums.asp.net/p/1217523/2165532.aspx

Hope this will help you.
If problem persist...
Forum: ASP.NET Feb 13th, 2008
Replies: 5
Views: 1,885
Posted By dilipv
Hi umapathyperumal,
Few days ago i also wanted to develop menu for my website, during this i came across the dynamic menu which is generated from Database. Following is the link, please visit that...
Forum: ASP.NET Feb 13th, 2008
Replies: 5
Views: 1,885
Posted By dilipv
Hi umapathyperumal,
Few days ago i also wanted to develop menu for my website, during this i came across the dynamic menu which is generated from Database. Following is the link, please visit that...
Forum: ASP.NET Feb 13th, 2008
Replies: 5
Views: 1,365
Posted By dilipv
Hi ebabes,
Datagrid has built-in functionality as DataBind() and property as DataSource. You need to set DataSet, ArrayList OR Any Collection as DataSource of DataGrid object. After that you can...
Forum: ASP.NET Feb 13th, 2008
Replies: 7
Views: 4,745
Posted By dilipv
hi ansari.wajid,
You can easily remove selected items from DropDownList. On the click of Delete button you first take index of selected item and then pass it to the Remove function of DropDownList...
Forum: ASP.NET Feb 11th, 2008
Replies: 5
Views: 1,255
Posted By dilipv
hi ebabes,


if you use the dropdownlist and add the number in to it, then there is no question of user making the mistake and so no need to prompt too..

Visual Basic code
...
Forum: ASP.NET Feb 9th, 2008
Replies: 5
Views: 1,255
Posted By dilipv
<script language="javascript" type="text/javascript">
function confirm()
{
if (confirm ==true)

else

return false;

}
Forum: Computer Science Feb 9th, 2008
Replies: 6
Views: 5,234
Posted By dilipv
[/QUOTE]

hi there,

here's a couple links based on obtaining Time Complexity algorithm
http://www.cs.uiowa.edu/~jier/cs3/2003-11-11_discussion.pdf
...
Forum: Computer Science Feb 9th, 2008
Replies: 5
Views: 2,876
Posted By dilipv
hi there,
Don't worry friend.I think that ASP.net using C# language will be the suitable as well as convenient because you are developing a web based application online recruitment....
Forum: ASP.NET Feb 8th, 2008
Replies: 3
Views: 582
Posted By dilipv
You have to create a user control and you can create table in it save the user control. and then from the toolbar you can directly drag and drop the user control on your web form or windows form.
...
Forum: ASP.NET Feb 8th, 2008
Replies: 2
Views: 620
Posted By dilipv
hi there,

i can suggest you to follow the following links this will help you out.You will get many automated testing tolls for your appllication...
Showing results 1 to 30 of 30

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC