- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 7
- Posts with Downvotes
- 7
- Downvoting Members
- 2
30 Posted Topics
Re: Coding the frontend will always be in HTML with CSS and JavaScript ’cause that is the language of any web page so html ,css and javascript sites is best for seo. | |
Re: This class can store variable names and values in MySQL database. It takes as parameters a database connection to a MySQL database MySQLi object and the name of a table. The class can store and retrieve the values of variables in the table. The type and the name of the … | |
Re: **Head tag:** The HTML <head> element provides general information (metadata) about the document, including its title and links to/definitions of scripts and style sheets. **Header tag:** The HTML <header> element represents a group of introductory or navigational aids. It may contain some heading elements but also other elements like a … | |
Re: yes,and you can use different framework like django,web2py,cherryPy etc.. for web development. | |
Re: check this,hope it helps #include <iostream> using namespace std; int main() { string str; cout << "Please enter your name: \n"; getline(cin, str); cout << "Hello, " << str << " that's how getline works!\n"; return 0; } | |
Re: hope it help. #include<iostream> using namespace std; int main() { int a[5]; int i; for ( i = 1; i < 6; i++ ) a[i] = i; for ( i = 1; i < 6; i++ ) cout << i << ' '; return a[i]; } | |
Re: A **Global** variable is defined outside all functions.The scope of a global variable is the whole program and It can be used and changed at any part of the program after its declaration. By making class and class member **Public** you can use it in any part of program using … | |
Re: @Bhavini_2 for sql:" SELECT FORMAT (getdate(), 'dd-MM-yyyy') " this syntex works! | |
Re: 1.HTML5 supports both audio and video whereas none of these was a part of HTML. 2.HTML does not allow JavaScript to run within the web browser whereas HTML5 provides full support for JavaScript to run in the background. 3.In HTML5, inline MathML and SVG can be used in text whereas … | |
Re: <!DOCTYPE html> <html> <head> <title>ygfrnk</title> <style> .centered { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); </style> </head> < body> <div class="container"> <img src="img.jpg" alt="img" style="width:100%;"> <div class="centered">center</div> </div> </body> </html> | |
Re: here,it is <?php $servername = "localhost"; $username = "username"; $password = " "; $dbname = " ";//your database name try { $conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $sql = "INSERT INTO MyGuests (firstname, lastname, email) VALUES ('Nevil', 'Roy', 'nevilroy@example.com')"; $conn->exec($sql); echo "Record Inserted successfully"; } catch(PDOException $e) { … | |
$(document).ready(function(){ var obj1 = { } var obj2 = { } if(obj1 === obj2) { alert('true'); } else { alert('False'); } }); Why if(obj1 == obj2) returns false eventhough obj1 and obj2 are objects of same type? | |
Re: try this! <!DOCTYPE html> <html> <frameset cols="100%"> <frame src="frame_a.htm" style="border:medium double rgb(0,0,255)"> </frameset> </html> use css to apply frame border and style. | |
Re: Hi, The** cellpadding** attribute specifies the space, in pixels, between the cell wall and the cell content. The **cellspacing** attribute specifies the space, in pixels, between cells. | |
Hi, I am creating a form in asp.net mvc @Html.EditorFor(model => model.Password, new { htmlAttributes = new { @class = "form-control" } }) How to set input type=password in above code. I have tried password for but it makes changes to web design | |
Re: Hi, The following liink will help you [Carousel animations](https://www.jssor.com/development/tool-slideshow-transition-viewer.html) | |
Re: The following link will help you. [Link](https://www.c-sharpcorner.com/article/sending-sms-using-C-Sharp-application/) | |
How to display error messages and details of error occurred during jQuery AJAX Call | |
Re: I think there should be Column_name insted of Database_name and there should be **"if @mxdbvlu is null"** insted of **"if @mxdbvlu = null"** I tried after these changes and its working | |
Re: The following way will work data: { ntid: $("#Eid").val() } | |
Re: A class can implement any number of interfaces but can extend only one class. Multiple inheritance is not supported because it leads to deadly diamond problem. However, it can be solved but it leads to complex system so multiple inheritance has been dropped by Java founders. | |
In JavaScript "11" + 1 is 111, but "11" - 1 gives 10 How? Can anyone please help me with this ? | |
Re: You need to use where condtion on line 10, otherwise all records of the Database Table | |
How to use pivoting WIth join of 3 tables without Aggregate function within it | |
Re: public static void SendEmail(string ToEmail) { var MailSubject = "Test email"; var MailBody = "Hi This is a test mail."; string FromMail = "abc@gmail.com"; string Password = "********"; SmtpClient client = new SmtpClient(); client.Port = 587; client.Host = "smtp.gmail.com"; client.EnableSsl = true; client.Timeout = 10000; client.DeliveryMethod = SmtpDeliveryMethod.Network; client.UseDefaultCredentials = … | |
Re: [Tutorial Link](https://www.tutorialsteacher.com/mvc/asp.net-mvc-tutorials) May be this can help you | |
Re: **I think the way you are calling function is not right ** **You should try this code ** <!DOCTYPE html> <html> <body> <canvas id="myCanvas" width="200" height="100" style="border:1px solid #d3d3d3;"> Your browser does not support the HTML5 canvas tag.</canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.beginPath(); ctx.arc(30, 30, … | |
In HTML how to create a image as link | |
Re: [This can help you](https://www.careerride.com/ASP-NET-events-in-GLOBAL-ASAX-file.aspx) |
The End.