Hi Mery,
Try out:
TextBox1.Text.L ength.ToString( );
Thanks,
Vivek...
User Profile
Collapse
-
Screenscraping Real Time Stock Quotes
Hi All,
I am working on a financial website.
I have to use real time stock quotes ticker(in Marquee format) for that.The stock exchange for which i want to extract the stock details is NSE(India) and the url for the same is http://www.nse-india.com
I searched internet thoroughly but could not meet any code of my requirement.
I am using ASP.Net 1.1 with C#.
Please help me with your precious suggestions and... -
Checking Database values on client-side
I have a textbox for entering username.
I want to check this username with the existing username in database.
I have done it on server side successfully.
But i want to implement the same check on client-side(using Javascript or Ajax).
I am using ASP.Net 1.1 with C#.
Thanks
Vivek Rathore -
Hi Bina,
Try out this
Server.MapPath( Request.Applica tionPath + @''/your folder/");
Regards,
Vivek Rathore...Leave a comment:
-
Hi Nidhi,
U may use the following stored procedure:
CREATE PROCEDURE Login
(
@firstname varchar(50),
@lastname varchar(50)
)
AS
BEGIN
insert into T_Users(firstna me,lastname )
values (@firstname,@la stname)
END
GO
In this case T_users is the table name.
Hope this will work fine for u.
...Leave a comment:
-
Noise words issue in full text seach Sql server 2000
Hi All,
I have been using full text search in my application for search purpose.
But on certain words i.e Noise Words such as And,After,About etc.
I am receiving the following error:
Execution of a full-text operation failed. A clause of the query contained only ignored words.
I tried a lot to sort out this issue,but this is going to be out of my scope.
If anybody can help me then... -
Noise words issue in full text seach Sql server 2000
Hi All,
I have been using full text search in my application for search purpose.
But on certain words i.e Noise Words such as And,After,About etc.
I am receiving the following error:
Execution of a full-text operation failed. A clause of the query contained only ignored words.
I tried a lot to sort out this issue,but this is going to be out of my scope.
If anybody can help me then... -
Hi Laxmi,
add return true after the alert u have mentioned in ur code.
Regards,
Vivek Rathore....Leave a comment:
-
Hi once again,
your problems are very small but interesting ones.
here is the javascript that will help you:
document.forms[Form1].elements["txtbox1"].focus();
Be Happy.
Vivek Rathore....Leave a comment:
-
Muskan,
Try Out:
CheckBox1.Check ed=Convert.ToBo olean(ds.Tables[0].Rows[0]["IsVisible"].ToString());...Leave a comment:
-
Hi,
Here is the modified code.
DataSet ds =new DataSet();
SqlDataAdapter da= new SqlDataAdapter( "select * from Customers","dat abase=Test;serv er=Test;uid=tes t;pwd=test");
da.Fill(ds);
for(i=0;i<ds.Ta bles[0].Rows.Count;i++ ) ///or if(ds.Tables[0].Rows.Count>0)
{
TextBox1.Text= ds.Tables[0].Rows[0]["CustomerID "].ToString();
TextBox2.Text=d s.Tables[0].Rows[0]["CustomerNa me"].ToString();...Leave a comment:
-
Hi Muskan,
Would u please tell in detail that what is ur requirement?
It is not getting clear that wat are ur intentions means wat do u actually want to do?
Thanks and Regards,
VIVEK RATHORE.Leave a comment:
-
I think the problem lies here:
You are declaring Dim client as socket in your first function i.e sockDataArrival .
But in same function rather than using client as socket you are using sockPOP3.
else in other function you are consistent with sockPOP3 declared as socket.
Vivek Rathore....Leave a comment:
-
Hi Shweta,
I am not so familiar with the Socket programming.
But i have found follwing link which might help you.
http://www.codeproject .com/cs/internet/mailclient.asp
Best Regards,
Vivek Rathore.Leave a comment:
-
Hi,
Please use cascading style sheet(CSS) in your page.
Thanks and Regards
Vivek Rathore.Leave a comment:
-
Hi Ashima,
Instead of declaring the code in Button_Submit event,add the following code in Page_load event:
btnSubmit.Attri butes.Add("onCl ick","return hello();"); // in c#
I hope it will certainly work fine for you.Leave a comment:
No activity results to display
Show More
Leave a comment: