Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~6K People Reached
Favorite Forums
Favorite Tags

28 Posted Topics

Member Avatar for Slade

hi Slade, According to me URL rewriting can help in solving your problem. Just check following URL [url]http://forums.asp.net/p/1217523/2165532.aspx[/url] Hope this will help you. If problem persist feel free to share with me. Thanks & Regards Dilip Kumar Vishwakarma Programmer [URL="http://www.intelcs.com"].Net Consulting[/URL]

Member Avatar for jack lion
0
221
Member Avatar for sidrules1984

[QUOTE=sidrules1984;529353]Hello.. i need some help.. WHich lang to use for my proj on Online recruitment system.. And how 2 start.. I haven't studied asp,vbscript.. what shd i do.. i m really worried. plz help.[/QUOTE] hi there, Don't worry friend.I think that ASP.net using C# language will be the suitable as …

Member Avatar for Taywin
0
185
Member Avatar for santhi1986

> hey some one help me out in calculation O(n) int koodle (int n) { int j,k:int x; if(n%2==0) for(j=0;j<n;j++) x+=rand()%2; else for(k=0;k<n;k++) x+=rand()%2; return x; } > I need to obtain the time complexity of the above matrix transpose algorithm using program step count method. > > > Thanks …

Member Avatar for srabasti
-2
178
Member Avatar for firebirds98

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") DropDownList1.Items.Clear() While dr.Read DropDownList1.Items.Add(dr(0)) End While dr.Close() connection_object.close_connection() Hope this will help you. Thanks & Regards Dilipv

Member Avatar for Ezzaral
0
393
Member Avatar for u4umang2001

[QUOTE=u4umang2001;527150]Hi i m working with ASP.Net, C# i need to have an example of trigger how to call it from C#, and how to execute???[/QUOTE] Hi u4umang2001, Just check this link, which contains good article. Hope this will help you. [url]http://www.c-sharpcorner.com/UploadFile/pk_khuman/ManagedTrigersUsingCSharp02202007230729PM/ManagedTrigersUsingCSharp.aspx[/url] Thanks & Regards Dilip Kumar Vishwakarma Programmer

Member Avatar for matricol
1
192
Member Avatar for Stunt

[QUOTE=Stunt;766906]Hello DaniWeb users, I'm in search of a script that is currently in use by [URL="http://www.joystiq.com/"]JoyStiq[/URL], or something like it if it is unique. [img]http://i40.tinypic.com/qqqwm1.png[/img] It basically lets you hover the image and a link is displayed under and you can click the image or the link. Visit [url]http://www.joystiq.com/[/url] to …

Member Avatar for Stunt
0
137
Member Avatar for designingamy

[QUOTE=designingamy;766804]Okay...here's the html form part: [CODE]move_uploaded_file($_FILES["pic1"]["tmp_name"], "../uploads/" . $_FILES["pic1"]["name"]);[/CODE] [/QUOTE] hi there, i think you need to make sure image is properly uploaded in to the folder. For this you can use [CODE]$result = move_uploaded_file($TempFileName, $FilePath); if (!$result) { echo "Error in uploading file"; exit; } chmod($FilePath,0777); [/CODE] chmod change …

Member Avatar for designingamy
0
177
Member Avatar for Aamit

[code=php]<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> <? $sql1=mysql_query("select name from categories") or die(mysql_error()); $num=mysql_num_rows($sql1); while($row=mysql_fetch_array($sql1)) { $category = $row['name']; ?> <option value='<?php echo $category; ?>'><?php echo $category; ?></option> <? } ?> </select> </td> </tr> </table> </form>[/code] i think you can either submit …

Member Avatar for kanaku
0
254
Member Avatar for knrakesh

[QUOTE=knrakesh;764733] i want to insert it in a database by taking from form KNR[/QUOTE] 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 file which on …

Member Avatar for dilipv
0
169
Member Avatar for pupsaa

> <input type="radio" name="position" value="Alumnus">Alumnus<br> > <input type="radio" name="position" value="Member">Member<br> > <input type="radio" name="position" value="Former Member">Former Member<br> > <input type="radio" name="position" value="Voting Member">Voting Member<br> > <input type="radio" name="position" value="HR Vicepresident">HR Vicepresident<br> > <input type="radio" name="position" value="MK Vicepresident">MK Vicepresident<br> > <input type="radio" name="position" value="PR Responsible">PR Responsible<br> > <input type="radio" name="position" value="President">President<br> …

Member Avatar for dilipv
0
127
Member Avatar for dourvas

[QUOTE=dourvas;764440] while($result = mysql_fetch_array($qry)) [/QUOTE] 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. Now for deleting part ,me also suggest make table which contain each row returned by query and last column …

Member Avatar for dilipv
0
253
Member Avatar for johnny.g

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. [url]http://www.daniweb.com/forums/thread6028.html[/url] [url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;q301240&ID=KB;EN-US;q301240[/url] Hope this will help you. Thanks & Regards Dilipv

Member Avatar for SheSaidImaPregy
0
196
Member Avatar for psathish2

Hi psathish2, [QUOTE]cmdjds.ExecuteNonQuery();[/QUOTE] 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. [QUOTE]if (username.Text = "login1" && pass.Text = "pass2" && clientid.Text = "client1" ) [/QUOTE] Secondly your if …

Member Avatar for psathish2
0
258
Member Avatar for ebabes

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 be like that. this.oleDbConnection1.ConnectionString = "Provider=Microsoft.Jet.OleDb.4.0;Data Source=" + Server.MapPath("~\\MyData\\grades.mdb"); OR this.oleDbConnection1.ConnectionString = "Provider=Microsoft.Jet.OleDb.4.0;Data Source=C:\\MyData\\grades.mdb"; Hope this will …

Member Avatar for ebabes
0
458
Member Avatar for ebabes

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 either in to Text File or in to database. I seen one article based on text file, …

Member Avatar for SheSaidImaPregy
0
131
Member Avatar for mukund_007

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: DropDownList ID="ddlist" runat ="server" > <asp: ListItem Text ="1" Value ="1"></asp: ListItem> <asp: ListItem Text ="2" Value ="2"></asp: ListItem> <asp: ListItem …

Member Avatar for dilipv
0
155
Member Avatar for Dano56

> I need help getting a variable from one page displayed onto another. I have two pages, mainmenu.aspx and secondmenu.aspx. mainmenu.aspx contains Textbox1 which contains some user-entered number in it. When the user clicks on Button1 on mainmenu.aspx, I need the table, Table1, on secondmenu.aspx to reflect that new selection. …

Member Avatar for bbqchickenrobot
0
177
Member Avatar for bungek84

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. [url]http://www.codeproject.com/KB/webforms/MySQLsuite.aspx[/url] [url]http://www.15seconds.com/issue/050210.htm[/url] Hope this will help you. Thanks & Regards Dilipv

Member Avatar for dilipv
0
154
Member Avatar for ansari.wajid

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 control.Use following code. DropDownList_Object.Items.Remove(DropDownList_Object.SelectedIndex); Hope this will help you. If you have any problem feel free to …

Member Avatar for ansari.wajid
0
1K
Member Avatar for david_bronsky

[QUOTE=david_bronsky;531281]I have question about Temporary Web Page. When I click on link in my web application and redirect to ( for example) mywebsite.com/12.aspx. When event OnLoad() fire,I read value 12, which is Primary key and make query to the database,get record and represent on web page. But,I need temporary web …

Member Avatar for dilipv
0
155
Member Avatar for u4umang2001

hi u4umang2001, [QUOTE]if(para1='' or para1= null) then 'update table1 set para2='''+@para2+''' and para3='''+@para3+'''' else 'update table1 set para1='''+@para1+''' and para2='''+@para2+''' and para3='''+@para3+''' ' [/QUOTE] 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 …

Member Avatar for dilipv
0
119
Member Avatar for u4umang2001

[QUOTE=u4umang2001;534203]Hi i want to use "text" datatype to declare a variable in stored procedure. how can i do this???[/QUOTE] Hi u4umang2001, Declaring a text variable in stored procedure is easy. Following example shows as below. [CODE] CREATE PROCEDURE sp_myStoredProcedure @myString varchar(100) AS ..... Go [/CODE] For detail understanding visit the …

Member Avatar for dilipv
0
99
Member Avatar for majestic0110

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 you a lot. Just check this link, hope this will help you. [url]http://www.4guysfromrolla.com/webtech/100500-1.shtml[/url] If problem …

Member Avatar for majestic0110
0
342
Member Avatar for umapathyperumal

[QUOTE=umapathyperumal;533685]Thanks for replying my friend serkansendur, This umapathyperumal... [B]problem in creating menu bar in asp.net2003[/B] What i am asking is? Inorder to create menubar in the web form of Asp.Net2003(Through by java script) [B]For Example: Menu Bar should be like this[/B] [B]File [/B] New Open Save What is the coding …

Member Avatar for dilipv
0
112
Member Avatar for ebabes

[QUOTE=ebabes;533788]I'm usng ASP.Net 2005 (Web Developer). I am not aware that there are built in functions provided in the page. What are those functions and how can I make use of it? [/QUOTE] Hi ebabes, Datagrid has built-in functionality as DataBind() and property as DataSource. You need to set DataSet, …

Member Avatar for dilipv
0
105
Member Avatar for ebabes

<script language="javascript" type="text/javascript"> function confirm() { if (confirm ==true) else return false; } </script> then write in .aspx.cs ButtonSave.Attributes.Add("onclick", "return confirm('Are you sure you proceed?');"); hope this code will help you out. Thank tou Jitesh [url=http://www.intelcs.com/].Net Consulting[/url]

Member Avatar for ebabes
0
152
Member Avatar for Dev-SEO

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 [url]http://www.acutest.co.uk/acutest/automated-testing-tools[/url] Thank you Jitesh [url=http://www.intelcs.com/].Net Consulting[/url]

Member Avatar for ftorres
0
150
Member Avatar for karis

[QUOTE=karis;527019]how can i display a table using user control[/QUOTE] 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. hope this …

Member Avatar for dilipv
0
97

The End.