Click here to Skip to main content
15,905,508 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionTable Control initiallization probelm. Pin
buffering839-Jan-11 14:21
buffering839-Jan-11 14:21 
AnswerRe: Table Control initiallization probelm. Pin
m@dhu9-Jan-11 17:54
m@dhu9-Jan-11 17:54 
AnswerRe: Table Control initiallization probelm. Pin
Abhijit Jana9-Jan-11 20:31
professionalAbhijit Jana9-Jan-11 20:31 
Questionhow to make my default language in hebrew when i stay in textbox Pin
Gali19789-Jan-11 7:35
Gali19789-Jan-11 7:35 
AnswerRe: how to make my default language in hebrew when i stay in textbox Pin
Keith Barrow9-Jan-11 8:27
professionalKeith Barrow9-Jan-11 8:27 
Questionhow to make (in C# code - asp.net) that my web will be the home page ? Pin
goldsoft9-Jan-11 1:00
goldsoft9-Jan-11 1:00 
AnswerRe: how to make (in C# code - asp.net) that my web will be the home page ? Pin
Abhijit Jana9-Jan-11 7:15
professionalAbhijit Jana9-Jan-11 7:15 
AnswerRe: how to make (in C# code - asp.net) that my web will be the home page ? Pin
Keith Barrow9-Jan-11 7:26
professionalKeith Barrow9-Jan-11 7:26 
In visual studio, right click the aspx page you want to be the home page, then set as startup page. If that isn't sufficient then you can add this to your web.config, assuming you are hosted in IIS7

<configuration>   
  <system.webServer>
     <defaultDocument>
        <files>
          <add value="MyPage.aspx" />
        </files>
      </defaultDocument>
  </system.webServer>
</configuration>


Otherwise see here[^] for configuring this in IIS 6

AnswerRe: how to make (in C# code - asp.net) that my web will be the home page ? Pin
Ravi Sant12-May-11 1:18
Ravi Sant12-May-11 1:18 
Questionhow to change the icon of my web-form ? Pin
goldsoft8-Jan-11 21:30
goldsoft8-Jan-11 21:30 
AnswerRe: how to change the icon of my web-form ? Pin
Keith Barrow8-Jan-11 21:44
professionalKeith Barrow8-Jan-11 21:44 
QuestionButton on a webpage Pin
chrisclarke117-Jan-11 21:58
chrisclarke117-Jan-11 21:58 
AnswerRe: Button on a webpage Pin
Kasson7-Jan-11 23:30
Kasson7-Jan-11 23:30 
GeneralRe: Button on a webpage Pin
chrisclarke119-Jan-11 0:52
chrisclarke119-Jan-11 0:52 
AnswerRe: Button on a webpage Pin
Not Active7-Jan-11 23:30
mentorNot Active7-Jan-11 23:30 
GeneralRe: Button on a webpage Pin
Kasson7-Jan-11 23:32
Kasson7-Jan-11 23:32 
GeneralRe: Button on a webpage Pin
Not Active8-Jan-11 3:21
mentorNot Active8-Jan-11 3:21 
AnswerRe: Button on a webpage Pin
Yusuf8-Jan-11 4:45
Yusuf8-Jan-11 4:45 
GeneralRe: Button on a webpage Pin
chrisclarke119-Jan-11 0:52
chrisclarke119-Jan-11 0:52 
QuestionNested gridview problem Pin
Mansi Arora7-Jan-11 20:11
Mansi Arora7-Jan-11 20:11 
AnswerRe: Nested gridview problem Pin
Sandeep Mewara7-Jan-11 20:37
mveSandeep Mewara7-Jan-11 20:37 
QuestionGridView versus ListView Pin
RobertWS7-Jan-11 14:27
RobertWS7-Jan-11 14:27 
AnswerRe: GridView versus ListView Pin
Yusuf7-Jan-11 17:09
Yusuf7-Jan-11 17:09 
GeneralRe: GridView versus ListView Pin
RobertWS7-Jan-11 23:02
RobertWS7-Jan-11 23:02 
QuestionProgrammatically Click select button in template field Gridview Pin
vimalrajnm7-Jan-11 2:52
vimalrajnm7-Jan-11 2:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.