Scripts Interview Questions
Questions Answers Views Company eMail

how to write function to validate the number of characters entering into the text box?

TCS,

2 5882

using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Data.SqlClient; public partial class Default2 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { SqlConnection cn = new SqlConnection("Data Source =Prg1; Initial Catalog= DBTEST; Integrated Security = True"); cn.Open(); DataSet ds= new DataSet (); string str = "DB_test"; SqlDataAdapter da = new SqlDataAdapter(str, cn); da.SelectCommand.CommandType = CommandType.StoredProcedure; da.SelectCommand.CommandText = str; da.Fill(ds); Session["test"] = ds; } protected void btnSubmit_Click(object sender, EventArgs e) { DataSet ds1 = new DataSet(); ds1= (DataSet ) Session ["test"]; DataTable dt = ds1.Tables[0].Clone(); DataRow[] dr; string[] sqlInput = txtNo.Text.Split("-".ToCharArray ()); if (txtNo.Text != "" && txtWeight.Text != "") { if (sqlInput.Length > 1) { string query = ("t1 <=" + sqlInput[0] + " and " + "t2 >=" + sqlInput[1]); dr = ds1.Tables[0].Select(query); } else { string query = ("t1 <=" + txtNo.Text + "and " + "t2 >=" + txtNo.Text); dr = ds1.Tables[0].Select(query); } foreach (DataRow dr1 in dr) { dt.Rows.Add(dr1.ItemArray); } int i = Convert.ToInt32(dt.Rows[0] ["zone"].ToString()); DataTable dt1 = new DataTable(); DataRow[] dr2; dt1 = ds1.Tables[1].Clone(); dr2 = ds1.Tables[1].Select("weight=\'" + txtWeight.Text + "\'"); foreach (DataRow dr3 in dr2) { dt1.Rows.Add(dr3.ItemArray); } DataRow[] dr4; DataTable dt2 = ds1.Tables[2].Clone(); dr4 = ds1.Tables[2].Select(("weight=\'" + txtWeight.Text + "\'")); foreach (DataRow dr5 in dr4) { dt2.Rows.Add(dr5.ItemArray); } int j = Convert.ToInt32(dt.Rows[0] ["days"].ToString()); lbl.Text = dt1.Rows[0][i].ToString(); lbldays.Text = dt2.Rows[0][j].ToString(); } else { } } } ============================================================ ================ CREATE PROCEDURE DB_test AS BEGIN DECLARE @tb1 table ( t1 bigint, t2 bigint, zone bigint, days bigint ) insert into @tb1(t1,t2,zone,days) select (case when(charindex("-",No)-1>0) then convert (bigint,substring(No,1,charindex("-",No)-1)) else No end) as t1, (case when(charindex("-",No)-1>0) then convert(bigint,substring(No,charindex("-",No) +1,len(No))) else No end) as t2, Zone as zone, Days as days from [926] select * from @tb1 select * from zone select * from days end GO

1964

how to write basic programs in VB Script like addition, multiplication?

14 60752

i want to when we will write the scripts either after getting the build or after getting the SRS?

3 3997

what we will test in functionality testing

1 2736

How to find the hidden answers present in an online exam?

3 5159

what is ajax

3 7077

can anybody tell vb script code for alphanumeric and special character .which is used in qtp the name text field.

1 4516

can i use vb script with jsp?

4 13890

How to port a GUI application onto Web

TCS,

1668

How to check the particular window is exist or not with out using check points

2 15922

What is difference between Active screen and movie screen recorder in QTP 9.2?

1 4316

how to get date format from system locale..format means neither long nor shor... format from system locale. i need like your date is mm/dd/yyyy formate or mm-dd-yy or with time like that. how to get.

2 7285

Can we override serivice()method in jsp?

3 7251

What is difference between Physical path and Virtual path? Explanin with example.

2 18152


Un-Answered Questions { Scripts }

What is full form of jsp?

498


Is angular open source?

372


How to get post data in node.js?

285


What are the variables in javascript?

560


What is an oauth token?

408






Why jquery is used instead of javascript?

434


What are the various changes between the rails version 2 and 3?

449


Explain javascript accessors ?

480


why script is client dependant.

1970


What is the difference between == and ===? Which one would you use?

548


What are differences between synchronous and asynchronous method of fs module?

256


List the modern browsers supported by angular 2?

412


List some methods supported by $http service in angularjs?

400


What is the difference between var and let?

475


What is jquery a client or server scripting?

470