Search Results

Showing results 1 to 26 of 26
Search took 0.01 seconds.
Search: Posts Made By: aish
Forum: ASP.NET Aug 8th, 2006
Replies: 1
Views: 3,106
Posted By aish
you can do it like this.

read email using streamreader,capture information and pass to next page.
Forum: JavaScript / DHTML / AJAX Jan 20th, 2006
Replies: 2
Views: 10,188
Posted By aish
Thanks for you reply :eek: . I found more efficient code.



<script type="text/javascript">
function Validate(objForm) {
var arrNames=new Array("text1", "text2", "text3", "text4", "text5");...
Forum: JavaScript / DHTML / AJAX Jan 18th, 2006
Replies: 2
Views: 10,188
Posted By aish
In my asp.net c# web app. I have 10 text feilds. I want to avoid duplicate same value in this text feilds. how I can do this using javascripts. :cry:
Forum: JavaScript / DHTML / AJAX Jan 7th, 2006
Replies: 1
Views: 6,069
Posted By aish
I'm working on asp.net c# web app. in my form I have Text Area and button. when I click the button I want to remove selected text from the text area (not all text only selected text.) how can I do...
Forum: HTML and CSS Dec 7th, 2005
Replies: 1
Views: 1,413
Posted By aish
this is the answer,

if (!/^[A-Za-z0-9\s\xA3\$]*$/.test(objInput.value)) {
Forum: HTML and CSS Dec 6th, 2005
Replies: 1
Views: 1,413
Posted By aish
I used this code for validate text box when user paste values to the text box.


//Browser Detection
var strUserAgent = navigator.userAgent.toLowerCase();
var isIE =...
Forum: MS SQL Nov 21st, 2005
Replies: 1
Views: 21,662
Posted By aish
I'm working with sql servre database I have two tables in the same
database.
thse are my tables,

CREATE TABLE [dbo].[Applicant] (
[UserID] [int] IDENTITY (1, 1) NOT NULL ,
[UserName]...
Forum: MS SQL Nov 19th, 2005
Replies: 4
Views: 4,098
Posted By aish
Ok Elohir, these are my answers,

1) How do you want to be notified... e-mail? pop-up window? Text mail to your phone?
I woluld like to send email

2) How do you want this triggered? In other...
Forum: MS SQL Nov 19th, 2005
Replies: 4
Views: 2,463
Posted By aish
your correct I can get the result with out using if else. but then for ex. if I want to select 'Programmer' then JobRole=='programmer' and JobRole=='null' selected but I want to select...
Forum: MS SQL Nov 13th, 2005
Replies: 4
Views: 2,463
Posted By aish
Thanks for your help using your ideas finally I manage to write a correct query,

CREATE PROCEDURE JobVacancy
(
@JobRole varchar (50)
)
as

if @JobRole <> '%'
begin
Forum: MS SQL Nov 11th, 2005
Replies: 4
Views: 2,463
Posted By aish
I have asp.net C# web application I want to search jobvacancy details using jobrole.
if user did not select any value I want to select all the details including null values.

this Jobvacancy...
Forum: C# Oct 1st, 2005
Replies: 4
Views: 43,520
Posted By aish
yes my table has only one feild,because this is test code I change my code like this, now it works fine but I have small problem.
if my dropdowns SelectedIndex==0 then I wants to insert null value....
Forum: C# Sep 30th, 2005
Replies: 4
Views: 43,520
Posted By aish
I want to insert datetime into the database.I want to insert date as a dd/MMMM/yyyy format

SqlDateTime x;
if((TextBox1.Text).Length==0)
{
x=SqlDateTime.Null;
}
else
{...
Forum: ASP.NET Sep 22nd, 2005
Replies: 4
Views: 11,677
Posted By aish
Forum: HTML and CSS Sep 19th, 2005
Replies: 2
Views: 2,807
Posted By aish
I have asp.net C# web app. it has country dropdownlist.when the page load I want to select current users country. how can I do this? :rolleyes:
Forum: JavaScript / DHTML / AJAX Sep 19th, 2005
Replies: 1
Views: 6,996
Posted By aish
How can I add one hour to current time using javascript? :twisted:
Forum: JavaScript / DHTML / AJAX Sep 19th, 2005
Replies: 3
Views: 8,136
Posted By aish
Your correct I changed my webpage date and time using javascript.Thank you very much. :lol:
Forum: ASP.NET Sep 17th, 2005
Replies: 4
Views: 11,677
Posted By aish
I have a asp.net c# web form, when the page load I want to display client computer date and time.I used DateTime.Now.Date() for this. it works well in the localhost, but after I deployed in the web...
Forum: JavaScript / DHTML / AJAX Sep 17th, 2005
Replies: 3
Views: 8,136
Posted By aish
using the javascript how can I get web server time and date? :eek:
Forum: HTML and CSS Sep 14th, 2005
Replies: 4
Views: 2,720
Posted By aish
Forum: HTML and CSS Sep 10th, 2005
Replies: 4
Views: 2,720
Posted By aish
thanks for your advice, but it was not working, any other ideas?
Forum: HTML and CSS Sep 10th, 2005
Replies: 4
Views: 2,720
Posted By aish
useing this code I avoid to paste invalid chracters to textboxes.

function PasteAlphaNumeric(objEvent)
{
var strPasteData = window.clipboardData.getData("Text");
var objInput =...
Forum: ASP.NET Sep 8th, 2005
Replies: 5
Views: 21,060
Posted By aish
you can use data reader for this,


command = new SqlCommand("SELECT * FROM Member",sqlConnection );
command.CommandType = CommandType.StoredProcedure;
try
{
sqlConnection.Open();
...
Forum: ASP.NET Sep 7th, 2005
Replies: 3
Views: 8,140
Posted By aish
Yes,it works thanks.
Forum: ASP.NET Sep 6th, 2005
Replies: 3
Views: 8,140
Posted By aish
I fill dropdown lists values from the database then I wants to hard code first value and last value. I already hard code first value it's like this.

cboName.Items.Insert(0,new...
Forum: MS SQL Aug 29th, 2005
Replies: 4
Views: 4,098
Posted By aish
Hi,
I have a database table which has a Field called birthday.I want to write SQL script which automatically search database every day and if someones birthday equal today then display a...
Showing results 1 to 26 of 26

 


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

©2003 - 2009 DaniWeb® LLC