SlideShare uma empresa Scribd logo
1 de 7
Conexao banco postgres ASP <%  	Set objConn = Server.CreateObject("ADODB.Connection") functionabreConexao() objConn.ConnectionString = "Driver={PostgreSQL ANSI};Server=localhost;Port=5432;Database=teste;Uid=postgres;Pwd=sql;" objConn.Open endfunction functionfechaConnexao() objConn.Close() endfunction %>
Include para conexao <!--#include file="conexao.asp"-->
Formulario de entrada(Montando Combobox) <tr> 	<td>     	Status     </td>  	<td>         <selectname="status" id="status">         <% abreConn() sql_status = "Select * fromstatus"             Set resultado = objConn.Execute(sql_status) whilenot resultado.eof response.Write("<optionvalue='"& resultado("idstatus") &"'>"& resultado("status”)&"</option>")                 resultado.movenext wend fechaConn()         %> 		</select>      </td>  </tr> <tr> 	<tdcolspan="2" align="center">         <input type="submit" name="salvar" id="salvar" value="Salvar" />         <input type="button" value="Voltar" onClick="document.location.href='index.asp'"/>     </td> </tr> </form>
Java script alert + redireciona %>         <script language="JavaScript" TYPE="text/javascript"> alert("Contato inserido com sucesso!"); location.href="INDEX.ASP"; 		</script>         <%
Recuperando dados na combobox <selectname="status" id="status"> <% sql_status= "Select * fromtb_status" Set rs2 = objConn.Execute(sql_status) whilenot rs2.eof ifrs2("idstatusfunc")<>idstatusthen response.Write("<optionvalue='"& rs2("idstatusfunc") &"'>"&rs2("statusfunc")&"</option>") else response.Write("<optionselectedvalue='"& rs2("idstatusfunc") &"'>"& rs2("statusfunc")&"</option>") endif rs2.movenext wend %> </select>
SQL INSERT ASP sql_insert="INSERT INTO pessoa (nome,endereco) VALUES('"&nome&"','"&endereco&"‘) objConn.Execute(sql_insert)
SQL UPDATE ASP sql_update="UPDATE  pessoa SET nome='"&nome&"',endereco='"&endereco&"', whereidpessoa="&idpesoa objConn.Execute(sql_update)

Mais conteúdo relacionado

Mais procurados

Angular 2 Architecture
Angular 2 ArchitectureAngular 2 Architecture
Angular 2 ArchitectureEyal Vardi
 
Practical JavaScript Promises
Practical JavaScript PromisesPractical JavaScript Promises
Practical JavaScript PromisesAsa Kusuma
 
NoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDBNoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDBSqreen
 
React.js触ってみた 吉澤和香奈
React.js触ってみた 吉澤和香奈React.js触ってみた 吉澤和香奈
React.js触ってみた 吉澤和香奈Wakana Yoshizawa
 
Transakcyjność w django
Transakcyjność w djangoTransakcyjność w django
Transakcyjność w djangoMarcin Baran
 
Angular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd MottoAngular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd MottoFuture Insights
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJSPat Cito
 
Workshop 12: AngularJS Parte I
Workshop 12: AngularJS Parte IWorkshop 12: AngularJS Parte I
Workshop 12: AngularJS Parte IVisual Engineering
 
Orsiso
OrsisoOrsiso
Orsisoe27
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS ArchitectureEyal Vardi
 
AngularJS Services
AngularJS ServicesAngularJS Services
AngularJS ServicesEyal Vardi
 
VPN Access Runbook
VPN Access RunbookVPN Access Runbook
VPN Access RunbookTaha Shakeel
 
Transaction Management Tool
Transaction Management ToolTransaction Management Tool
Transaction Management ToolPeeyush Ranjan
 
Angular 1.x vs. Angular 2.x
Angular 1.x vs. Angular 2.xAngular 1.x vs. Angular 2.x
Angular 1.x vs. Angular 2.xEyal Vardi
 

Mais procurados (20)

Angular 2 Architecture
Angular 2 ArchitectureAngular 2 Architecture
Angular 2 Architecture
 
RSpec
RSpecRSpec
RSpec
 
Practical JavaScript Promises
Practical JavaScript PromisesPractical JavaScript Promises
Practical JavaScript Promises
 
Excellent
ExcellentExcellent
Excellent
 
NoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDBNoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDB
 
Rails is not just Ruby
Rails is not just RubyRails is not just Ruby
Rails is not just Ruby
 
React.js触ってみた 吉澤和香奈
React.js触ってみた 吉澤和香奈React.js触ってみた 吉澤和香奈
React.js触ってみた 吉澤和香奈
 
Transakcyjność w django
Transakcyjność w djangoTransakcyjność w django
Transakcyjność w django
 
Angular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd MottoAngular Performance: Then, Now and the Future. Todd Motto
Angular Performance: Then, Now and the Future. Todd Motto
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJS
 
Workshop 12: AngularJS Parte I
Workshop 12: AngularJS Parte IWorkshop 12: AngularJS Parte I
Workshop 12: AngularJS Parte I
 
Orsiso
OrsisoOrsiso
Orsiso
 
AngularJS Architecture
AngularJS ArchitectureAngularJS Architecture
AngularJS Architecture
 
AngularJS Services
AngularJS ServicesAngularJS Services
AngularJS Services
 
VPN Access Runbook
VPN Access RunbookVPN Access Runbook
VPN Access Runbook
 
Transaction Management Tool
Transaction Management ToolTransaction Management Tool
Transaction Management Tool
 
Angular 1.x vs. Angular 2.x
Angular 1.x vs. Angular 2.xAngular 1.x vs. Angular 2.x
Angular 1.x vs. Angular 2.x
 
Javascript - Beyond-jQuery
Javascript - Beyond-jQueryJavascript - Beyond-jQuery
Javascript - Beyond-jQuery
 
Angularjs Performance
Angularjs PerformanceAngularjs Performance
Angularjs Performance
 
Postman On Steroids
Postman On SteroidsPostman On Steroids
Postman On Steroids
 

Destaque

LA TECNOLOGIA EN LA EDUCACION
LA TECNOLOGIA EN LA EDUCACIONLA TECNOLOGIA EN LA EDUCACION
LA TECNOLOGIA EN LA EDUCACIONfelipe-morales
 
Roar spansh version maria stefany montoya
Roar spansh version maria stefany montoyaRoar spansh version maria stefany montoya
Roar spansh version maria stefany montoyaStefany Ramón
 
Presentación
PresentaciónPresentación
Presentaciónexiredes
 
Dignidad humana desde embrion
Dignidad humana desde embrionDignidad humana desde embrion
Dignidad humana desde embrionGeovanna13
 
Hungria, Irlanda e Islandia
Hungria, Irlanda e Islandia Hungria, Irlanda e Islandia
Hungria, Irlanda e Islandia Blanca Madrid
 
Paris salon du_chocolat
Paris salon du_chocolatParis salon du_chocolat
Paris salon du_chocolatfilipj2000
 
Secretos final fantasy ix by f fmaniacs
Secretos final fantasy ix by f fmaniacsSecretos final fantasy ix by f fmaniacs
Secretos final fantasy ix by f fmaniacsManuel García Serrano
 
3 bimestre
3 bimestre3 bimestre
3 bimestremtavo159
 
Manual de soporte a distancia
Manual de soporte a distanciaManual de soporte a distancia
Manual de soporte a distanciageraibarra30
 
O traballo por proxectos en infantil, primaria e secundaria
O traballo por proxectos en infantil, primaria e secundariaO traballo por proxectos en infantil, primaria e secundaria
O traballo por proxectos en infantil, primaria e secundariaMaría Valbuena
 
Hardware jhonatan velasco 3
Hardware jhonatan velasco 3Hardware jhonatan velasco 3
Hardware jhonatan velasco 3Treaxy Dulxexito
 
Presentación Juan Murgui
Presentación Juan MurguiPresentación Juan Murgui
Presentación Juan MurguiJuan Murgui
 
Como crear documento en google docs
Como crear documento en google docsComo crear documento en google docs
Como crear documento en google docsILse VaLeria
 
Revista de nutricion laura rocio
Revista de nutricion laura rocioRevista de nutricion laura rocio
Revista de nutricion laura rocioLaura Tinoco
 

Destaque (20)

LA TECNOLOGIA EN LA EDUCACION
LA TECNOLOGIA EN LA EDUCACIONLA TECNOLOGIA EN LA EDUCACION
LA TECNOLOGIA EN LA EDUCACION
 
Roar spansh version maria stefany montoya
Roar spansh version maria stefany montoyaRoar spansh version maria stefany montoya
Roar spansh version maria stefany montoya
 
lizbethzita
lizbethzitalizbethzita
lizbethzita
 
Presentación
PresentaciónPresentación
Presentación
 
Dignidad humana desde embrion
Dignidad humana desde embrionDignidad humana desde embrion
Dignidad humana desde embrion
 
Hungria, Irlanda e Islandia
Hungria, Irlanda e Islandia Hungria, Irlanda e Islandia
Hungria, Irlanda e Islandia
 
Feliz navidad 2013
Feliz navidad 2013Feliz navidad 2013
Feliz navidad 2013
 
Paris salon du_chocolat
Paris salon du_chocolatParis salon du_chocolat
Paris salon du_chocolat
 
Secretos final fantasy ix by f fmaniacs
Secretos final fantasy ix by f fmaniacsSecretos final fantasy ix by f fmaniacs
Secretos final fantasy ix by f fmaniacs
 
3 bimestre
3 bimestre3 bimestre
3 bimestre
 
Manual de soporte a distancia
Manual de soporte a distanciaManual de soporte a distancia
Manual de soporte a distancia
 
O traballo por proxectos en infantil, primaria e secundaria
O traballo por proxectos en infantil, primaria e secundariaO traballo por proxectos en infantil, primaria e secundaria
O traballo por proxectos en infantil, primaria e secundaria
 
Hardware jhonatan velasco 3
Hardware jhonatan velasco 3Hardware jhonatan velasco 3
Hardware jhonatan velasco 3
 
Presentación Juan Murgui
Presentación Juan MurguiPresentación Juan Murgui
Presentación Juan Murgui
 
Como crear documento en google docs
Como crear documento en google docsComo crear documento en google docs
Como crear documento en google docs
 
El comercio
El comercioEl comercio
El comercio
 
Info sacu
Info sacuInfo sacu
Info sacu
 
Revista de nutricion laura rocio
Revista de nutricion laura rocioRevista de nutricion laura rocio
Revista de nutricion laura rocio
 
St comandante episodio 6
St comandante episodio 6St comandante episodio 6
St comandante episodio 6
 
Filosofia
FilosofiaFilosofia
Filosofia
 

Semelhante a Aspdevice - Asp Fast Crud introdution

Semelhante a Aspdevice - Asp Fast Crud introdution (20)

Presentasi Kelompok 25 PW A+B
Presentasi Kelompok 25 PW A+BPresentasi Kelompok 25 PW A+B
Presentasi Kelompok 25 PW A+B
 
Tugas pw [kelompok 25]
Tugas pw [kelompok 25]Tugas pw [kelompok 25]
Tugas pw [kelompok 25]
 
My java file
My java fileMy java file
My java file
 
30 5 Database Jdbc
30 5 Database Jdbc30 5 Database Jdbc
30 5 Database Jdbc
 
Spring Capitulo 05
Spring Capitulo 05Spring Capitulo 05
Spring Capitulo 05
 
Data Access with JDBC
Data Access with JDBCData Access with JDBC
Data Access with JDBC
 
สปริงเฟรมเวิร์ค4.1
สปริงเฟรมเวิร์ค4.1สปริงเฟรมเวิร์ค4.1
สปริงเฟรมเวิร์ค4.1
 
ASP.NET MVC
ASP.NET MVCASP.NET MVC
ASP.NET MVC
 
Interoperable Web Services with JAX-WS
Interoperable Web Services with JAX-WSInteroperable Web Services with JAX-WS
Interoperable Web Services with JAX-WS
 
WCF 4.0
WCF 4.0WCF 4.0
WCF 4.0
 
Struts2
Struts2Struts2
Struts2
 
JDBC Tutorial
JDBC TutorialJDBC Tutorial
JDBC Tutorial
 
Introduction to Prototype JS Framework
Introduction to Prototype JS FrameworkIntroduction to Prototype JS Framework
Introduction to Prototype JS Framework
 
Executing Sql Commands
Executing Sql CommandsExecuting Sql Commands
Executing Sql Commands
 
Executing Sql Commands
Executing Sql CommandsExecuting Sql Commands
Executing Sql Commands
 
Introduction to AJAX and DWR
Introduction to AJAX and DWRIntroduction to AJAX and DWR
Introduction to AJAX and DWR
 
Scti 2011 minicurso jquery
Scti 2011 minicurso jqueryScti 2011 minicurso jquery
Scti 2011 minicurso jquery
 
Aspnet2 Overview
Aspnet2 OverviewAspnet2 Overview
Aspnet2 Overview
 
jdbc
jdbcjdbc
jdbc
 
AJAX Workshop Notes
AJAX Workshop NotesAJAX Workshop Notes
AJAX Workshop Notes
 

Último

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Último (20)

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

Aspdevice - Asp Fast Crud introdution

  • 1. Conexao banco postgres ASP <% Set objConn = Server.CreateObject("ADODB.Connection") functionabreConexao() objConn.ConnectionString = "Driver={PostgreSQL ANSI};Server=localhost;Port=5432;Database=teste;Uid=postgres;Pwd=sql;" objConn.Open endfunction functionfechaConnexao() objConn.Close() endfunction %>
  • 2. Include para conexao <!--#include file="conexao.asp"-->
  • 3. Formulario de entrada(Montando Combobox) <tr> <td> Status </td> <td> <selectname="status" id="status"> <% abreConn() sql_status = "Select * fromstatus" Set resultado = objConn.Execute(sql_status) whilenot resultado.eof response.Write("<optionvalue='"& resultado("idstatus") &"'>"& resultado("status”)&"</option>") resultado.movenext wend fechaConn() %> </select> </td> </tr> <tr> <tdcolspan="2" align="center"> <input type="submit" name="salvar" id="salvar" value="Salvar" /> <input type="button" value="Voltar" onClick="document.location.href='index.asp'"/> </td> </tr> </form>
  • 4. Java script alert + redireciona %> <script language="JavaScript" TYPE="text/javascript"> alert("Contato inserido com sucesso!"); location.href="INDEX.ASP"; </script> <%
  • 5. Recuperando dados na combobox <selectname="status" id="status"> <% sql_status= "Select * fromtb_status" Set rs2 = objConn.Execute(sql_status) whilenot rs2.eof ifrs2("idstatusfunc")<>idstatusthen response.Write("<optionvalue='"& rs2("idstatusfunc") &"'>"&rs2("statusfunc")&"</option>") else response.Write("<optionselectedvalue='"& rs2("idstatusfunc") &"'>"& rs2("statusfunc")&"</option>") endif rs2.movenext wend %> </select>
  • 6. SQL INSERT ASP sql_insert="INSERT INTO pessoa (nome,endereco) VALUES('"&nome&"','"&endereco&"‘) objConn.Execute(sql_insert)
  • 7. SQL UPDATE ASP sql_update="UPDATE pessoa SET nome='"&nome&"',endereco='"&endereco&"', whereidpessoa="&idpesoa objConn.Execute(sql_update)