hi what is the requirement for connect to Microsoft SQL database using asp.net like (any connectors for mssql) please guide me .
User 4637012
Posts
-
how to write code to cnnect mssql -
parsing of rss url using asp.nethi thanks for your reply http://capitalmarket.com in that site i am loking Capital Market - Live News we will develop in asp.net i am looking for that . any help bye naga
-
parsing of rss url using asp.nethi friends i have a RSS URl i need to parse it showing as hyperlink with marquee action in one page . the url is like this http://feeds.reuters.com/reuters/INbusinessNews how to read the url using asp.net and presenting like breaking news . please guide me bye Naag
-
asp.net for loop examplethanks for your response
-
asp.net for loop examplehi i am new to asp.net i serched for loop example from google but the extension.asp is working. i have to implement for loop .aspx . what is the best tutorial for .aspx example ? bye Naga
-
mysql query in asp.netthanks sashidhar brother its working fine bye your younger brother naag
-
mysql query in asp.nethi Manas Bhardwaj thanks for your reply. i will explain clearly i have one dropdown list in that list i have INDIA,USA,UK,UAE options are there when ever the user select particular option i need to pass that option into query and get the values from database. so i need dynamic value passing into that query.how to write for in ASP.net in java we write like Empno={33,44,55,55} String ss="Select * from emp where empno='"+Empno[i]+"' and salary="20000" "; but i am new toasp.net how it is possible. i tried like this but giveing error dim strQuery = string.Format("select * from nysemin where symbol='&Empno&' and ticker_symbol='acc'", da) have a nice day bye naag
-
mysql query in asp.nethi, i am new to asp.net but have some problem in asp.net coding i want to acess the mysql database data using asp.net coding. i write like this Dim cmd As OdbcCommand = New OdbcCommand("select * from nysemin where date='2009-09-14' and ticker_symbol='acc' ", con) the above code is like hardcoding manually.but i need dynamically i tried like this dim da="2009-09-15" Dim cmd As OdbcCommand = New OdbcCommand("select * from nse_und_5min where date="&da&" and ticker_symbol='acc' ", con) but error is showing how to complete the above requirement ie passing date value into dynamically in that query. have a nice day bye Naga
-
how to convert swings to java applethi how to convert java swings application to java applet please guide me import java.awt.Component; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.text.DateFormatSymbols; import java.util.Calendar; import java.util.Locale; import javax.swing.DefaultListCellRenderer; import javax.swing.JCheckBox; import javax.swing.JComboBox; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JPanel; import com.standbysoft.datepicker.JDatePicker; public class GeneralDemo extends JPanel { private JDatePicker datePicker; public GeneralDemo() { datePicker = new JDatePicker(); setLayout(new GridBagLayout()); add(datePicker, new GridBagConstraints(0, 7, 1, 1, 0.0, 0.0, GridBagConstraints.NORTH, GridBagConstraints.HORIZONTAL, new Insets(0, 5, 5, 5), 0, 0)); } private static void createAndShowGUI() { JFrame frame = new JFrame("GeneralDemo"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); GeneralDemo newContentPane = new GeneralDemo(); newContentPane.setOpaque(true); //content panes must be opaque frame.setContentPane(newContentPane); //Display the window. frame.pack(); frame.setVisible(true); } public static void main(String[] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); } } have a nice day bye naga