Forum: ASP.NET Aug 8th, 2006 |
| Replies: 1 Views: 3,106 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 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 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 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 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 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 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 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 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 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 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 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 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 |
Forum: HTML and CSS Sep 19th, 2005 |
| Replies: 2 Views: 2,807 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 How can I add one hour to current time using javascript? :twisted: |
Forum: JavaScript / DHTML / AJAX Sep 19th, 2005 |
| Replies: 3 Views: 8,136 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 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 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 |
Forum: HTML and CSS Sep 10th, 2005 |
| Replies: 4 Views: 2,720 thanks for your advice, but it was not working, any other ideas? |
Forum: HTML and CSS Sep 10th, 2005 |
| Replies: 4 Views: 2,720 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 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 |
Forum: ASP.NET Sep 6th, 2005 |
| Replies: 3 Views: 8,140 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 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... |