It depends on what you want to become, programmer or tester or something else.
For becoming a good programmer or a tester, try mastering OOPS, SQL and any language which will give you an idea. If possible try learning JAVA or .NET, SSIS, SSRS, CUBES, Oracle APPS.......ALL THE BEST!
User Profile
Collapse
-
Doorway pages or Gateway pages are pages that are optimized for one key term but are really designed to be gateways to lead you to a different, central page. These pages usually have very little original content and provide a poor user experience.
This used to be a common technique, but Google has started removing doorway pages from their search engine index.
Some examples of doorways include:
•Having...Leave a comment:
-
I use Gliffy, this is one of the best, very user friendly and very easy to learn and implement.
Bharath VasireddyLeave a comment:
-
Rabbit is right, keep a if check before forloop on sizeOfArray variable. If it falls outside the allowed range then throw error message to the user.
Bharath VasireddyLeave a comment:
-
Please find the code below:
Code:public Main() { \\ ctlFileUpload is the System.Web.UI.WebControls.FileUpload control on the form. Stream uploadStream = ctlFileUpload.PostedFile.InputStream; int iTotal = int.Parse(uploadStream.Length.ToString()); byte[] all = new byte[uploadStream.Length]; byte[] newbyte; uploadStream.Read(all, 0, iTotal); memstr.Write(all, 0, iTotal);
Leave a comment:
-
-
Important SQL Server Statements/Searchs
In this article I would like to share some of the important searches, like searching for table used in stored procedures and searching for list of tables and views used in a stored procedure.
1) List stored procedures which contain a table.
Code:SELECT DISTINCT syso.name FROM syscomments sysc INNER JOIN sysobjects syso ON sysc.id= syso.id WHERE sysc.TEXT LIKE '%tablename%' and upper(xtype)='P'
Here this query will... -
bharathreddy replied to Difference between WebSite and Web Project...and conversion from WebSite to WebProjecin General[QUOTE=bharathre ddy;3564271]
Conversion from WebSite application to WebProject is very simple and easy way. Difference bewteen website and webproject, read this article its simple and sweet...
http://www.dotnetspider.com/resource...plication.aspx
Simple note is :
if you want your application to generate a single dll for your entire project then you have to create a...Leave a comment:
-
The article was very good and impressive...ve ry different and robust way for validation....Leave a comment:
-
Hi Frinny,
Thankyou so much for the response. My problem is like, I am using a complete postback, its working good and the file is also being uploaded to ftp server, but my problem is:
If I normally keep the fileupload control with out any styles its working good.
But if I keep an image on top of the fileupload control which looks like a browse button, and on this image click i am firing the fileupload...Leave a comment:
-
fileupload control problem using an imagebutton on top of it
I am using updatepanel in my application and fileupload control...there is no way to customize the look and feel of the fileupload control so what i have done is kept an image on top of the browse button of the fileupload control.
And when the user clicks on the imagebutton which will be exactly like a browse button, i raise the fileupload click event by javascript.
Like fileupload1.cli ck();
When... -
bharathreddy started a topic Difference between WebSite and Web Project...and conversion from WebSite to WebProjecin GeneralDifference between WebSite and Web Project...and conversion from WebSite to WebProjec
I was new to VS 2008. I was doing a project basically it was web application, so i created website with out knowing the inner lying methodology used. Then at the end of project when I tried to build the application it was like creating differennt project dlls, then I came to know we cannot create a single project dll from website application.
What to know the difference bewteen website and webproject ...read this article its simple... -
What is Meant by Shadow Copying - in .NET
While developing web application I came across build error: "Cannot create/shadow copy 'your assembly info here' when that file already exists". I was not quite sure what is shadow copy is in .net. From name we can guess that its shadowing or helping in taking requests for some thing else. And its correct.
Why this was introduced in asp.net?
If we are developing/updating/enhancing any production applications, without... -
Leave a comment:
-
How to restrict application at a specific time in specific timezone
This is insight I would like to share how to restrict application from doing some tasks on specific time in specific timezone.
Like if we want to restrict our application to work only from 12:01AM to 2:30PM EST and we don't know where the server is located and we don't know the timezone of the hosted application.
Code:DateTime dt = DateTime.Now.To.ToUniversalTime(); //This will convert the time to UTC
-
How to find whether the entered value is a specific datatype.
How to find weather the entered value in a textbox is of specific datatype.
There is a method TryParse with every datatype to check weather the value is that specific datatype or not.
The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails. It eliminates the need to use exception...Leave a comment:
-
My question is answered...plea se see the below link.
http://www.asp.net/(S(sf10gzjodvrpce...ial-02-vb.aspx
http://www.west-wind.com/presentatio...ompilation.asp
Thanks
Bharath Reddy VasiReddy...Leave a comment:
-
Unable to generate dll when building project
Hi,
When I build my application which is in (.net 3.5), I don't see the dll created in the bin folder. I think a default dll with the project name should be created and stored in bin folder when we build the application...c an any one help me on this....
Thanks
Bharath Reddy VasiReddy -
I got a good article on: http://blogs.msdn.com/benko/archive/...eb-config.aspx
It says that we can do the encryption on Application_Sta rt...its nice...I think I was looking for this....
Please tell me is there any other efficient way to do this....? (Encryption)Leave a comment:
-
Where to encrypt web.config file
Hi,
I have to encrypt my web.config file, I want to know like where exactly/commonaly do we write this encryption code. Do we write in global.asax file or in some other place so that it will execute once and does the encryption and from there on wards no need to execute the code anymore. (Encryption code).
Thanks
Bharath Reddy VasiReddy
No activity results to display
Show More
Leave a comment: