Thanks. I could see the frameworks under c:/windows/Microsoft .net/Framework. Mine is 32-bit.
Soumini Ramakrishnan
Posts
-
.net framework 3.5 and visual studio 2008 -
.net framework 3.5 and visual studio 2008But I couldn't find .net framework 3.5,3.0 or 2.0 in Add/Remove Programs.
-
.net framework 3.5 and visual studio 2008I was installing visual studio 2008 on my laptop(windows 7). But the installation stuck when it was trying to install sql server 2005. By googling I learned that sql server 2005 requires .net framework 3.5 to be installed on the system. Then I downloaded .net framework 3.5 sp1 and tried to install it. But the installation failed. My system is already having .net framework 4. How to install sql server successfully.
-
App Domains and logged in usersHow many App Domains an ASP.NET Worker Process creates if suppose 10 different users are logged into the web site
-
program to find specific info from a websiteIs it possible to find specific info from a website(eg: Job listings from a public site) using code
-
Selecting a web hosting companyThanks for all
-
Selecting a web hosting companyI am planning to work at home. I will be developing web applications using ASP .Net, C#. To test these applications I need to select one web hosting company. How can I test these applications with minimum cost. I have googled a lot on the topic, but the informations I got are really confusing.(some tell $3.99 and some tell $45, which is suitable for me-I don't know) and I could n't find a clear solution. Please help me?
-
Unable to Use CSS in visual studio design for asp.nettry this <span class="text">testing</span>
-
visual web developer or visual studioIf I want to do a web application, visual web developer is sufficient or visual studio is more recommended? Why I am asking is if I install Visual studio, is there any additional things available that can improve the functionality of my web application
-
Problem in using Atlas Update PanelTry this: ((Label)UpdatePanel1.FindControl("Label1")).Text ="Successfully inserted";
-
Same Session in two browsersI logged in to my account in codeproject. Then I took another instace of the browser. In that also I opened codeproject. Then that session is available in the newly opened browser. How is it made possible?
-
LinkButton problemYes, It was a css issue . The name of the css class was wrong. Thanks to all
-
LinkButton problemPage_Load block is empty
-
i want to know the number hits customers are vistingThank you
-
LinkButton problemThis is the aspx code: <tr> <td width="14" style="height: 83px"> </td> <td width="108" style="height: 83px"><asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="~/userimages/saj123.jpg" OnClick="ImageButton2_Click" Height ="79px" Width ="106px" /></td> <td width="6" style="height: 83px"> </td> <td width="106" style="height: 83px"><asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/userimages/sree123.jpg" OnClick="ImageButton2_Click" Height ="79px" Width ="106px" /></td> <td width="7" style="height: 83px"> </td> <td width="107" style="height: 83px"><asp:ImageButton id="ImageButton3" onclick="ImageButton2_Click" runat="server" Width="106px" ImageUrl="~/userimages/saj123.jpg" Height="79px"></asp:ImageButton></td> <td width="7" style="height: 83px"> </td> <td style="height: 83px; width: 107px;"><asp:ImageButton id="ImageButton4" onclick="ImageButton2_Click" runat="server" Width="106px" ImageUrl="~/userimages/saj123.jpg" Height="79px"></asp:ImageButton></td> <td style="height: 83px; width: 11px;"> </td> </tr> <tr> <td width="14" style="height: 19px"></td> <td width="108" align ="center" valign ="top" style="height: 19px"><span style =" color :White; font-family :Verdana ; font-size :8pt; font-weight :bold ">Sajana</span></td> <td width="6" style="height: 19px"></td> <td width="106" align ="center" valign ="top" style="height: 19px"><span style =" color :White; font-family :Verdana ; font-size :8pt; font-weight :bold ">Sreejith</span></td> <td width="7" style="height: 19px"></td> <td width="107" style="height: 19px"></td> <td width="7" style="height: 19px"></td> <td style="width: 107px; height: 1
-
i want to know the number hits customers are vistingthen what is the best solution
-
DataReader throws exceptionHave you declared moSqlDataReader ?
-
i want to know the number hits customers are vistingI think the following code will help you. In your application folder create a text file named "Counter.txt" and put 0 in that file. Write the following in the code behind page. protected void Page_Load(object sender, EventArgs e) { myLabel .Text = counter(); } public string counter() { StreamReader re = File.OpenText(Server.MapPath("Counter.txt")); string input = null; string mycounter = ""; while ((input = re.ReadLine()) != null) { mycounter = mycounter + input; } re.Close(); int myInt = int.Parse(mycounter); myInt = myInt + 1; TextWriter tw = new StreamWriter(Server.MapPath("Counter.txt")); tw.WriteLine(Convert.ToString(myInt)); tw.Close(); re = File.OpenText(Server.MapPath("Counter.txt")); input = null; mycounter = ""; while ((input = re.ReadLine()) != null) { mycounter = mycounter + input; } re.Close(); return mycounter; }
-
LinkButton problemI have one link button and 8 image buttons in my page. First time when the page is loaded, the link button is not appearing as a link. It looks like normal text. When I click on one of the Image Buttons the page will refresh and now onwards Link Button will appear as a link. Anyone have an idea?
-
GridViewTry this int index = Convert.ToInt32(e.CommandArgument); string pname = GridView1.Rows[index].Cells[0].Text;