Tutorials To Learn Visual Basic?
It's now 3 years I work with ASP writing it with VBScript. I would like to learn Visual Basic to be able to write ASP components. Anyone knows good free resources, tutorials to learn Visual Basic? I already have a book for ASP components, but I first need to learn the basics of VB.
View Replies
ADVERTISEMENT
I've read hundreds of posts regarding this, but haven't got a working solution yet. Does anyone have a working snippet of code from an ASP page that can be used to upload a file to an FTP server? I read all about INET, but due to some licensing issues it won't work....
View Replies
View Related
Is there one? I need to hash a sensative string before inserting it into the sql server database. It HAS to be done in the ASP code, because it is also stored in a cookie. Any ideas? Server asp code is vbscript.
View Replies
View Related
I need source code for a simple MSN API example, something that interacts between MSN's controls. I want to break it down test it and use it for my own applications.
Or can people even suggest free source code sites for VB. I can search for them there. Planet-source-code had an AMAZING app, but it wanted an ocx file which I obviously didn't have.
View Replies
View Related
ASP And Visual Basic Interview questions and answers
I have listed over 100 ASP and Visual Basic interview questions and
answers in my website
View Replies
View Related
I would like to know the Pros and cons for using ASP VS Visual Basic for intranet, in terms of time development and customization. The project that we will use it is a basic Information Management System.That could be used for offline and online using IIS and MYSQL.
View Replies
View Related
I know we can write ASP with VB Script. Some people told me the big ASP
projects usually use Visual Basic for the business logic. Is that the case?
What I mean is an ASP project is the combination of server-side ASP code and
Visual Basic components (.cls)
View Replies
View Related
I heard that there are two ways of coding with ASP. If I'm not wrong then it is by the use of VB or C.
What do these two terms mean?
When should one be used as opposed to the other?
How do I recognize a current website that is coded with either one?
Please explain. I'm new to all these technologies and ASP altogether.
View Replies
View Related
i've written a program, where is the compile button? I can only save it as a script.
View Replies
View Related
ASP And Visual Basic Interview questions and answers
I have listed over 100 ASP and Visual Basic interview questions and
answers
in my website
http://www.geocities.com/myintervie...VisualBasic.htm
So please have a look and make use of it.
View Replies
View Related
Not sure if this is the right group for this but anyways...
I've got an ASP web application that uses a Visual Basic component to do
some work. I instantiate the component in asp and then attempt to call the
subroutine. The subroutine is actually invoked maybe 2 out of 10 times run.
What could possibly be the reason for this?? Why the inconsistency in
running the subroutine?
View Replies
View Related
I want to insert the data into the MS Access Database using Visual Basic 6.0. Anybody please heplp me to tell the steps to insert the data into the database.
View Replies
View Related
asp (visual basic script) break long text lines into several lines.
This line of my guestbook (visual basic script) - response.write "message: " & Recordset ("message") & "<br><br>" displays access database field "message" in one line in web browser.
How do I break this text line into several lines? I know in asp.net there is datagrid. Is there something like datagrid in asp. Or perhaps this problem can be solved with htm?
View Replies
View Related
Can some of you point me in the direction of ASP tutorials, preferably with basic examples, and some other manuals etc.
View Replies
View Related
Please tell a site from where I can download the tutorials for learning the ASP ?
View Replies
View Related
give me a few tutorials or articles which completely teach you SQL server, or atleast what you need to know to make ASP applications for other people.
I've only ever used Access, and I'm afraid SQL server works differently. I always use SQL queries e.g INSERT..., DELETE..., UPDATE..., SELECT.. and never use the recordset's functions e.g .AddNew..etc.
View Replies
View Related
this has probably been asked a thousand times so please except me apologies if it has. I have searched the site but could not find anything.
I am about to start a new job and they have told me the website is in .ASP using javascript and an Access database which will soon be using a SQL database. I have no knowledge of .ASP only HTML.
My questions are where is the best place to learn the ASP basics. I basically need a crash course in ASP in 4 weeks I know HTML and am quite confident with this.
View Replies
View Related
I am not unfamiliar with procedural programming, and my employer is asking me to pick up ASP.Can anyone point me in a right direction to learning ASP coming from a procedural programming background?
View Replies
View Related
I know something about HTML and no more but recently i really like to learn ASP but unfortunatly no body know ASP here. How can start asp and what should i know before i start learning ASP.
View Replies
View Related
I found this on E-Bay and heard that it's a good start.
http://cgi.ebay.com/ws/eBayISAPI.dl...=ADME:L:DS:US:8
Can anyone with experience in ASP confirm this?
View Replies
View Related
how to encrypt my code? and do you know which site that i can learn the encrypt style?
View Replies
View Related
ASP.net is that what is used to create web pages on a server such as IIS?
ASP.net is part of visual studio, what software package contains IIS?
View Replies
View Related
I have an XML file which I access from a remote server like
Set http = CreateObject("MSXML2.ServerXMLHTTP")
http.open "GET","http://www.andrewlouis.co.uk/viewcountries.xml",false
http.send
strXML = http.responseText
The real server is password protected with, I think, with basic
authentication. How do I pass it the username and password.
View Replies
View Related
This is ALL the code that i have..
<%
response.write("This is a test")
%>
the file is saved as test.asp
I have uploaded it, and when i run it, I get the code being displayed ie.
<%
response.write("This is a test")
%>
View Replies
View Related
I am having one asp page in which a table is displayed. The table displays the values in textboxes.when the client uses search functionality it searches in the whole page but doesnt search in the table. Can any one tell me about how to search the values contained in textboxes in the table.if possible give me some code
View Replies
View Related
However I have a complicated update page so I am going to hand code it. I started by breaking down to the basics of Updating but I keep getting a 'Syntax error in UPDATE statement' error. Can anybody see where I am going wrong?:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="../Connections/Publishing.asp" -->
<% If Request("Submit") <> "" Then %>
<%
set Command1 = Server.CreateObject("ADODB.Command")
Command1.ActiveConnection = MM_Publishing_STRING
Command1.CommandText = "UPDATE Test SET Value = Paul WHERE ID = 2 "
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()
%>
<% End If %>
View Replies
View Related
I have two simple problems which I think are related(?) I have a form with the folowing code:
<form method="post" action="sendemail.asp">
and
<input name="submit" type="button" value="SUBMIT">
when I click the submit button it does not go to sendemail,asp I have tried adding the full/parstial path infront of the sendemail.asp but no luck
Similarly I have the following code which I have taken an asp file from another project and changed the name accordingly but the image does not show Code:
View Replies
View Related
I'm using MSXML2.ServerXMLHTTP to get a web page using an url with basic authentication (e.g. http://user:password@www.mysite.it).
Microsoft denied basic authentication within Internet Explorer URL (see KB 834489) so I'm unable to get the page contents.The client-side workaround is to change some registry settings (see http://support.microsoft.com/kb/834489), anybody can help me with a different solution ?
View Replies
View Related
How to create a basic chat?
View Replies
View Related
I've got a field in my database called notes, where they of course are leaving notes for certain orders. I'd like to create a page that lists all orders that have notes left in them but I'm having trouble figuring out what sql statement to use. In my words it needs to say "select everything from the table where notes does not equal null"
I guess I just don't really know what to put for the null part. I'm thinking it'll be somehting like..
SELECT * FROM requests WHERE notes <> ...??? this is what I dont know.
View Replies
View Related
i am trying to pull records using a partial name, here's what i have
PlayerName = "'" & "%" & txtFindPlayer.Text & "%" & "'"
this part works fine, for example text is 'ric'
Set rs = db.OpenRecordset("SELECT * FROM EVENT_SCORING_TBL WHERE PLAYER_NAME LIKE " & PlayerName & "")
no record containing 'ric' is found, but the syntax seems to be ok. Am i using the right wildcards? there is definatly an Eric in the database, but it doesnt pull. any suggestions?
View Replies
View Related
I'm having some problems to perform select on sql statements just cause I'm really confuse on how to refer some variable I got by request.querystring or request.form or even inside form variables...sometimes just using "var" others using "&var&" others '%"&var&"%'...
Does anyone have an article link or some tips regarding this kind of issue?
View Replies
View Related
I have setup basic authentication on one of my web sites. For some reason, I get challenged when I navigate to some of the ASP's within the website. I have checked all the pages and made sure they all have authorisation set to a specific group.
What can be causing this?
View Replies
View Related