string file_name = "D:\\Project\\test1.sql"; string text_line = ""; string obj; obj = txtWrite.Text.ToString(); System.IO.StreamWriter objwriter; objwriter = new System.IO.StreamWriter(file_name); string[] aryLines = new string[1]; aryLines[0] = "use"; for (int i = 0; i < 1; i++) { text_line = text_line + aryLines[i]; objwriter.Write(aryLines[i]); objwriter.Write(txtWrite.Text); } objwriter.Close();
Posts
Showing posts from February, 2016
- Get link
- X
- Other Apps
string file_name = "D:\\Project\\test1.sql"; string text_line = ""; string obj; obj = txtWrite.Text.ToString(); System.IO.StreamWriter objwriter; objwriter = new System.IO.StreamWriter(file_name); string[] aryLines = new string[1]; aryLines[0] = "use"; for (int i = 0; i < 1; i++) { text_line = text_line + aryLines[i]; objwriter.WriteLine(aryLines[i]); Console.WriteLine(obj); } objwriter.Close();
- Get link
- X
- Other Apps
select EnrollmentNo =(select enrollmentNo from StudentMst where Student_ID = a.Student_ID), a.Hobbies,a.MedicalConditions, a.Emergency_Note,a.FatherOccupation,a.FatherDesignation,a.Father_Qual, a.Monthly_Income,a.MotherOccupation,a.MotherDesignation, Parent_MobileNo =(select Mobile from ParentMst where ParentID = (select top 1 ParentID from Parent_Student_Rel where Student_ID = a.Student_ID )), a.Prev_School_Percentage, a.Prev_School_Rank,a.Prev_School_FromDate,a.Prev_School_Todate,a.Father_FirstName,a.Father_LastName,a.Mother_FirstName from Student_Detail a
- Get link
- X
- Other Apps
HTML 1. What is the preferred way for adding a background color in HTML? A.) <BODY BACKGROUND="YELLOW"> B.) <BODY STYLE="BACKGROUND-COLOR: YELLOW"> C.) <BACKGROUND>YELLOW</BACKGROUND> 2. WHAT IS THE CORRECT HTML FOR CREATING A HYPERLINK? A.) <a name="#">A</a> B.) <a href="http://www.iVerticals.in">example</a> C.) <a url="http://www.iVerticals.in ">example</a> 3. .How can you open a link in a new browser window? A.) <a href="url" new> B.) <a href="url" target="new"> C.) <a...