12,085 Topics

Member Avatar for
Member Avatar for Fenerbahce

hi, how can i find out that what number of record(row) my cursor focused on in database? thanks label1.text= active row`s number ????? example : [code] [COLOR=#0000ff]Dim[/COLOR][COLOR=#000000] baglanti [/COLOR][COLOR=#0000ff]As[/COLOR][COLOR=#0000ff]New[/COLOR][COLOR=#000000] SqlClient.SqlConnection()[/COLOR] [COLOR=#0000ff]Dim[/COLOR] command [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]New[/COLOR] SqlClient.SqlCommand() [COLOR=#0000ff]Dim[/COLOR] kisiler [COLOR=#0000ff]As[/COLOR] SqlClient.SqlDataReader baglanti.ConnectionString = [COLOR=#800000]"data source=instance2000;"[/COLOR] & [COLOR=#800000]"initial catalog=dbf;"[/COLOR] & [COLOR=#800000]"integrated security= SSPI" …

Member Avatar for Fenerbahce
0
100
Member Avatar for Adzz

I have to create a number of controls equal to a number entered in a textbox by the user. I created a web user control, which has a radio button list. Then when the user press a Submit button, I want to check the selected values of the controls created …

Member Avatar for Adzz
0
105
Member Avatar for nsan

example: [URL="http://www.yourdomain.com/username"]www.yourdomain.com/username[/URL] when you sign up in Social Networking websites like zorpia.com and tagworld.com, they create a homepage for you that you can edit. your username comes after / and no file extension is included like [URL="http://www.zorpia.com/username"]www.zorpia.com/username[/URL] i dont know how they do it any hint?

0
79
Member Avatar for Techno_dame

Hi there, I recently started learning how create ASP.NET pages using Web Matrix but when I access the Web Control Toolbar and try and drag and drop controls, the selected control does not display properly. It works for some of the controls but for a lot of others in the …

Member Avatar for Paladine
0
146
Member Avatar for nsan

when you register in zorpia.com or tagworld.com, they create a homepage for you like: [URL="http://www.zorpia.com/myname"]www.zorpia.com/myname[/URL] i dont know how it works? does it create a seperate folder? how come no file extension is included? any hint for me to learn how to do that?

0
60
Member Avatar for Munoz

I am trying to display a database into textboxes without using Datagrids. How do you give a value to a text box that corresponds with a Sql row. Thanks.

Member Avatar for tgreer
0
103
Member Avatar for jhickman41

Hello, I have developed a site ([URL="http://www.heftysgear.com"]www.heftysgear.com[/URL]) that needs to have a shopping cart added to it. I really do not have alot of experience in this area, but know a little to get the job done. I am having diffculty finding the code, or a affordable program were I …

0
70
Member Avatar for web developer

Hi all, I focus now a new problem . I want to make the user upload a complete Folder to the server . Not file by File How can i do it . and also if any one have a control (Browsing directory) instead of HTML file input? Thanks:rolleyes:

Member Avatar for tgreer
0
81
Member Avatar for bodikon

[code] sql = "SELECT * FROM tblcsvdump" set rs = connection.execute(sql) records = rs.Fields.Count dim heading(100) dim pulled(100) dim i dim count dim VAL dim VEL i=0 count = 0 for i=0 to records heading(count) = rs.Fields(count) response.write(heading(count)) header = heading(count) '**** THIS ROW HAS ERROR pulled(count) = Request.Form(header) count=count+1 …

Member Avatar for campkev
0
124
Member Avatar for infinity4ever

hi... i create a new table with this code Dim SQLCreate As New SqlCommand Dim Conn As New SqlConnection Dim DA As New SqlDataAdapter Dim DS As New Data.DataSet 'Create DB SQLCreate.CommandText = "CREATE TABLE test (ID integer NOT NULL)" SQLCreate.Connection = Conn Conn.ConnectionString = "Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\RBD.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True" …

Member Avatar for infinity4ever
0
287
Member Avatar for adnan1888

i need to use the variables declared in javascript in asp.net saw a thread suggesting hidden textfields but that wud help in request or query strings what if i needed to use the value of a variable declared in javascript by fulfilling some condition into an INSERT COMMAND. the page …

Member Avatar for tgreer
0
225
Member Avatar for infinity4ever

hi i want to insert the current date and time in the sql server database... but i dont know how or what is the formulla exactly..i tried several time but all failed... basicly what i want is when someone log in the site with the membership the session("Date") will be …

Member Avatar for infinity4ever
0
141
Member Avatar for Itpon

Welcome everybody, I just installed visual studio 2003 in my PC and am facing a problem while trying to open a new asp.net web application project, this is the message that i get.. [IMG]http://www.up4world.com/images/images/adb9b488e1.jpg[/IMG] can anybody helping solving the problem? Thanks

Member Avatar for Paladine
0
151
Member Avatar for grajeshmsc

HI All, i'm having a problem in authenticating the users in my application. Actually my scenario is i'm getting user name using 'httpcontext'. But this working fine in our developement.its not working in our client machine.The logged username is differ from its showing in the application.but for some users its …

Member Avatar for Paladine
0
194
Member Avatar for kirankumarreddy
Member Avatar for Frehley

Hi! What I am trying to do is to send and recive messages throuh users. The sending part works oks, but I am having troubles reciving em. I want a label to display "Hi, you Have X new messages". The way I have to know that it is a new …

Member Avatar for Frehley
0
200
Member Avatar for infinity4ever

hi all i write this code Protected Sub btnCreate_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCreate.Click Dim SQLCreate As New SqlCommand Dim Conn As New SqlConnection Dim DA As New SqlDataAdapter Dim DS As New Data.DataSet 'Create DB SQLCreate.CommandText = "CREATE TABLE test " SQLCreate.Connection = Conn Conn.ConnectionString …

Member Avatar for campkev
0
94
Member Avatar for kamlesh

There is no datetime picker in the toolbox of visual studio .Net 2003 how do i insert it. I did try add/remove items and it does get added but it is not active and so cannot be used. Anyone can help me out?

Member Avatar for Paladine
0
98
Member Avatar for Oxiegen

Hello! Now I have another problem. I have successfully implemented cross-page postback with ASP.NET 1.1 using: [code] [COLOR=#0000ff]Protected[/COLOR] [COLOR=#0000ff]Sub[/COLOR] submit_Click([COLOR=#0000ff]ByVal[/COLOR] sender [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]Object[/COLOR], [COLOR=#0000ff]ByVal[/COLOR] e [COLOR=#0000ff]As[/COLOR] System.EventArgs) [COLOR=#0000ff] For[/COLOR] [COLOR=#0000ff]Each[/COLOR] o [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]Object[/COLOR] [COLOR=#0000ff]In[/COLOR] Page.Request.Form [COLOR=#0000ff] Dim[/COLOR] ctlName [COLOR=#0000ff]As[/COLOR] [COLOR=#0000ff]String[/COLOR] = o.ToString() [COLOR=#0000ff] If[/COLOR] [COLOR=#0000ff]Not[/COLOR] ctlName.StartsWith(UniqueID & [COLOR=#800000]":"[/COLOR]) [COLOR=#0000ff]Then [/COLOR][COLOR=#0000ff] …

0
112
Member Avatar for sathiya

Hi all, I hav an application running in ASP.Net using VB. I hav two textboxes which carries user's input and a button. On Click of this button, the values in the textboxes will be added and be displayed in a label in a new window. I hav declared a variable …

Member Avatar for Oxiegen
0
239
Member Avatar for Oxiegen

Hi, all! I've been trying to pass a javascript variable to an asp.net webapp through a hidden input field. All according to post [URL="http://www.daniweb.com/techtalkforums/thread26184.html"]http://www.daniweb.com/techtalkforums/thread26184.html[/URL]. But something seems to be garbled. Here's what parts of my aspx code looks like. [code] ... [COLOR=#0000ff] var[/COLOR] src = document.documentElement.outerHTML; document.getElementById([COLOR=#800000]"pSource"[/COLOR]).Value = src; } …

Member Avatar for Oxiegen
0
134
Member Avatar for infinity4ever

hello i have a menu and IFrame in the page... i want another page to open in the iframe when i click any title in the menu...anyone know how?

0
62
Member Avatar for preethishivbaba

Hi all, I have an urgent problem..Plzz can anyone help me guys.. We are into a student management system project and we want to send E-mails to students once tehy are registered with us saying taht from so and so date teh course is gonna start. I am getting teh …

-1
825
Member Avatar for Slade

Hey guys, I'm using VS .NET 2003, and I am designing a web application in VB .NET, I'm just wondering, Tekmaven mentioned to me in another thread of mine that it would be a good idea to use the datalist control as a menu, how would I use it to …

Member Avatar for LeProgrammeur
0
207
Member Avatar for infinity4ever

hi all i want to limit the input from the user in the textbox... actually i am creating a "signup" page where the user have to type his name ,password, email, etc... the problem is i want an error to be displayed on a label when the user type nothing …

Member Avatar for infinity4ever
0
211
Member Avatar for preethishivbaba

Hi all. We are into a student information system project and we want to send confirmation to student that his course is abt to start on so and so date from our website but we are unable to do so..Is it becouse of Source code problem or some connections problem …

Member Avatar for preethishivbaba
0
159
Member Avatar for campkev

Ok, I am using a datagrid with paging enabled. It works fine if number of pages is 10 or less. Where I am running into problem is if there are more than 10 pages An example: paging looks like this Pages 1 2 3 4 5 6 7 8 9 …

Member Avatar for campkev
0
104
Member Avatar for thiyag2001

Dear All, I need to hide the user control by checking a small if condition.If the condition is false then then the user control is set TRUE,else It should be FALSE.How can i do it in ASP.NET with VB.NET . Thanks, Thiyagarajan.N

Member Avatar for hollystyles
0
201
Member Avatar for vitou85

Hi everybody, I can't transaction(Insert,delete, and update) to Ms. Access. I use C#(Web Broswer). This is the message Error: Operation must use an updateable query. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and …

Member Avatar for Paladine
0
73
Member Avatar for vitou85

Hi I am a new member in the forum. Now I have problem with MP3 file. I want to know how to read and write MP3 to database. :?: :sad:

Member Avatar for vitou85
0
268

The End.