- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
28 Posted Topics
Re: Have you enabled the viewstate true for the dropdown | |
Re: I do not think there is anything automatic as such , you will need to generate a collection with help of date and time function | |
Re: Even if you set a date through your email client it will be overridden by your email server. You need to ensure that the email server in a appropriate manner....no ways out. | |
Re: if you have set the autopostback to true it will refresh the page or make a postback. | |
Re: Looks like your global.asax.vbis not a proper one. It does not have the exception definition. | |
Re: You need to close your datareader. | |
Re: Sorry i read your post twice i understood the scenario but not the problem can you clarify your problem again. Sorry for asking you to repeat. | |
Re: Chrislays solution is better. | |
Re: In listbox1 change event write the code which fills listbox2 , am i missing someting in your question | |
Re: Its not spaces its nulls. convert.tostring handles nulls while simple tostring() function does not handle null. | |
Re: This .NET interview question is mainly asked to test if you have used coding standards in your project. All the above three are naming conventions which are followed in programming languages to ensure a proper and neat code. Below is the explanation of each naming convention. Pascal Notation- In this … | |
Re: Can you post specifics how you are sending email to gmail. I mean any email component etc what are you using. | |
Re: as you have already written the stored procedure , you can call the same via ado.net as shown in the below code. You can see the adddata stored procedure in the below code [CODE] SqlConnection conn = new SqlConnection("Server=(local);DataBase=Northwind;Integrated Security=SSPI"); conn.Open(); SqlCommand cmd = new SqlCommand("addData", conn); cmd.CommandType = CommandType.StoredProcedure; … | |
![]() | Re: Wrap your operation around update panel and use the ajax time for updates. are you looking for a complete code or the thought process how to do it. |
Re: You can check in the SQL itself like in the below code [CODE]select isnull("",Customercode) from customertable[/CODE] | |
Re: Can you try [CODE]<%# DataBinder.Eval(Container.DataItem, "Id") %>[/CODE] | |
Re: if the data is coming my query string use the below code [CODE]request.querystring["status_url"];[/CODE] if its coming by http post use the below code [CODE]request.form("status_url")[/CODE] | |
Re: Generic collection are faster as they do not have boxing unboxing. They are strongly typed. Hmm by the way arguing with the interviewer does not benefit. | |
Re: [code]if(primary<>0) { Update() } else { add()} }[/code] Thanks | |
Re: Let say if you have a query string as shown in the below code [CODE]http://www.xyz.com?id=123&uid=shiv[/CODE] You can then get the values in the code as shown below [CODE]request.querystring["uid"][/CODE] The above value you can then insert using ADO.NET | |
Re: Below are some guranteed questions in ASP.NET interview How is ASP.NET page life cycle executed? What are Httphandlers and HttpModules and difference between them? What are different kind of validator controls in ASP.NET ? How is ‘Server.Transfer’ different from ‘response. Redirect’ ? Can you explain windows, forms and passport authentication? … | |
Re: Can you enable remote errors and see paste the issue. | |
Re: You need to write a regular expression for it. What your need exactly try this ^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$ | |
Re: great answer | |
Re: [code]select isnull(mobile,'No record') from table[/code] | |
Re: ^[a-b]{7}.[gif]|[bmp]$ I have written a general one , you need to go on the same lines | |
Re: No No and No. You can not create a object of abstract class -- its half defined. You can not create a object of interface as its methods and functions are empty. |
The End.