Search Results

Showing results 1 to 35 of 35
Search took 0.01 seconds.
Search: Posts Made By: anish.anick
Forum: ASP.NET Oct 27th, 2009
Replies: 1
Views: 223
Posted By anish.anick
Hi

Check out the links

http://www.codeproject.com/KB/applications/AliAspNetChat.aspx

http://www.codeproject.com/KB/aspnet/WebChatAsp35LinqAjax.aspx

Hope this helps
Forum: ASP.NET Oct 27th, 2009
Replies: 3
Views: 470
Posted By anish.anick
Hi Anusha,

You can run the code asynchronously using ajax and initiate a ModalPopUp which will pop up with your requirement (image or anything you want) after running the code. Hope this...
Forum: ASP.NET Oct 27th, 2009
Replies: 0
Views: 399
Posted By anish.anick
Hi All,

I got the following error on creating a new virtual directory for a working web service version. What could be the issue? Since the same Web service build works fine on another machine.
...
Forum: JavaScript / DHTML / AJAX Aug 14th, 2009
Replies: 3
Views: 288
Posted By anish.anick
I already tried the technique of using a hidden variable. It didn't work.
Forum: JavaScript / DHTML / AJAX Aug 14th, 2009
Replies: 3
Views: 288
Posted By anish.anick
Hi All,
I need to cache some javascript variable values across the page.
Consider page 1 has a javascript variable which holds some value and If the user take page 2 and clicks the browser...
Forum: JavaScript / DHTML / AJAX Jun 26th, 2009
Replies: 1
Views: 417
Posted By anish.anick
Hi All,
I need to create a HTML page which plays live audio. (I know to play an audio file using <object> tag) But my requirement is to stream live audio please help me to solve this.

Thanks
Forum: C# Jun 1st, 2009
Replies: 5
Views: 1,468
Posted By anish.anick
Hi All,
I need to send email from a C# application from localhost. I was successful in sending email using gmail SMPT port and host. But i need send email from local host SMPT virtual server. ...
Forum: C# May 20th, 2009
Replies: 0
Views: 389
Posted By anish.anick
Hi All,

I need to develop an application in C# which uses SNMP to send request to a computer. How can i send a SNMP request from my C# application.(Any sample examples?) Please help me to...
Forum: C# May 13th, 2009
Replies: 2
Views: 639
Posted By anish.anick
Hi All,
I need to create a user control having a label and button.
The label text size can be different, When the text length is
greater the user control must autosize the label...
Forum: JavaScript / DHTML / AJAX May 11th, 2009
Replies: 9
Views: 826
Posted By anish.anick
Hi
You can split the string with '/' and then you can get the length some thing like this

var names = "aashish/ankush";
var namesList = names.split('/');

namesList.length will return the...
Forum: JavaScript / DHTML / AJAX May 11th, 2009
Replies: 1
Views: 1,373
Posted By anish.anick
Hi
You have to assign the error message inside a div or span near the html control and make it display or hide after validating...

Regards
Anish
Forum: JavaScript / DHTML / AJAX May 7th, 2009
Replies: 3
Views: 652
Posted By anish.anick
Hi
No issues found.I am getting check box id inside the alert box..Did you change the removeRow()? Try out this code

<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<BODY>
Forum: JavaScript / DHTML / AJAX May 6th, 2009
Replies: 3
Views: 1,749
Posted By anish.anick
Hi
You can use insertRow() to insert a row to html table.
Some thing like this...
var rowIndex = 0; // Assign the row index
var row =...
Forum: JavaScript / DHTML / AJAX May 6th, 2009
Replies: 3
Views: 652
Posted By anish.anick
Hi
Change the removeRow() to the following.. This will alert the checkbox id.
(You have to take the check box id before deleting the table row)

function removeRow(theRow){
var rowObj =...
Forum: JavaScript / DHTML / AJAX May 5th, 2009
Replies: 2
Views: 818
Posted By anish.anick
Catch the ajax on complete state when the readyState property becomes 4, after that execute the javascript code window.location.reload() to refresh/reloading the page

Regards
Anish
Forum: JavaScript / DHTML / AJAX May 5th, 2009
Replies: 3
Views: 1,186
Posted By anish.anick
Essential,
My issue is even after clearing the timer the timer doesn't stops.
For checking this particular issue i put a button which fires the
clearInterval() on clicking. Then i...
Forum: JavaScript / DHTML / AJAX May 4th, 2009
Replies: 3
Views: 1,186
Posted By anish.anick
Hi All,
I have web page where the datas are refreshed by calling Asp.net web service from javascript. I am using javascript setInterval() for updating the datas periodically, also using...
Forum: JavaScript / DHTML / AJAX May 1st, 2009
Replies: 24
Views: 1,441
Posted By anish.anick
Sure, You can create a page with zoom function and an empty DIV to load the image.

Anish
Forum: JavaScript / DHTML / AJAX Mar 10th, 2009
Replies: 1
Views: 626
Posted By anish.anick
Hi
Seems the image src is wrong.
The image scr should be "../images/createyourown/badges/+[Badges;15mm x 15mm (P-10)]15mmx15mmBadge(P-10).png"

The below <img> will display the correct...
Forum: JavaScript / DHTML / AJAX Mar 3rd, 2009
Replies: 2
Views: 855
Posted By anish.anick
Hi
Seems like the image source is not properly formed.
Set the full image src .. also rename the image

the image tag is formed some thing like this (found with the help of firebug)
...
Forum: JavaScript / DHTML / AJAX Mar 3rd, 2009
Replies: 2
Views: 1,293
Posted By anish.anick
Hi
Try passing a randomly gerated number as query string.

Like this
req.open("GET","/timerProg.cgi?rnd="+Math.random(),false);

Regards
Anish
Forum: JavaScript / DHTML / AJAX Feb 18th, 2009
Replies: 3
Views: 2,566
Posted By anish.anick
Hi
You can use javascript charAt() method to check the character in textbox.Some thing like this
var str = "any thing";
for(var i = 0;i < str.length;i++){
if(str.charAt(i) == ' '){
...
Forum: ASP.NET Feb 18th, 2009
Replies: 3
Views: 1,069
Posted By anish.anick
Hi Frank,
I am also doing the same procedure. While debugging i can see that the ScriptManager takes the correct webservice path as in the webconfig file. The scriptmanager also creates...
Forum: ASP.NET Feb 17th, 2009
Replies: 3
Views: 1,069
Posted By anish.anick
Hi All,
I am having issue in calling asp.net web service from javascript. The web service resides in one of our development machine and i am trying to call the web service from my local...
Forum: JavaScript / DHTML / AJAX Dec 29th, 2008
Replies: 1
Views: 1,749
Posted By anish.anick
Hi All,
I am facing CPU utilization issue while iterating through HTML table rows. I am generating an HTML table dynamically using javascript
which contains atleast 500 rows. After the...
Forum: ASP.NET Nov 17th, 2008
Replies: 0
Views: 365
Posted By anish.anick
Hi All,
I am developing a web application which contains rich set of ajax request from web page and some web service calls using javascript.Our local server was woking fine. But when we...
Forum: ASP.NET Oct 7th, 2008
Replies: 1
Views: 1,407
Posted By anish.anick
Hi
I am facing an issue regarding ASP.net validators. I have a web page which contains 3 textboxes,one drop down list, one radio button and a button to submit the form.Some times the validators...
Forum: JavaScript / DHTML / AJAX Sep 25th, 2008
Replies: 3
Views: 2,585
Posted By anish.anick
Hi All,
Is there any way to set the focus to a table row using javascript so that subsequent key press events can iterate through the table rows.Please help me to solve this.

Thanks
Forum: ASP.NET Sep 25th, 2008
Replies: 6
Views: 5,662
Posted By anish.anick
Hi
Unfortunately we cant use these two suggestion since our requirement does not allow to do so. I was able to solve this issue using JSON. Thanks for the information..
Forum: ASP.NET Sep 17th, 2008
Replies: 6
Views: 5,662
Posted By anish.anick
Hi
Thanks for the reply. But i want some thing different. I will explain the scenario correctly.
I have an Asp.Net webservice in our domain "xyz", and the webservice can be accessed...
Forum: ASP.NET Sep 15th, 2008
Replies: 6
Views: 5,662
Posted By anish.anick
Hi All,
Please tell me how i can call a web service from an HTML page using javascript which works fine on both IE and fire fox.I was successful in calling a ASP.NET web service using...
Forum: PHP May 16th, 2008
Replies: 11
Views: 25,684
Posted By anish.anick
Hi All,
How can i set the session time out in PHP if the user stays inactive for a certain time in a web page.Please help me to solve this..

Thanks
Forum: PHP Apr 29th, 2008
Replies: 2
Views: 1,723
Posted By anish.anick
Forum: PHP Apr 21st, 2008
Replies: 2
Views: 1,723
Posted By anish.anick
Hi All,
Is there any way to send email in php without user interaction.The scenario is some thing like this.. I want to send email's to persons based on his/her birthday.I need your help....
Forum: PHP Jan 19th, 2008
Replies: 1
Views: 1,759
Posted By anish.anick
Hi,
I am a beginner in php mysql... I want to pass null values to integer from PHP file to mysql stored procedure.

eg:
$name = "John";
$age = $_POST['age']; // Which is a null value..
...
Showing results 1 to 35 of 35

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC