Posts by GutoSchiavon • 157 points
7 posts
-
1
votes1
answer510
viewsA: Global.asax file does not load
The problem was solved by adding a Global.Cs class with the Global.asax code, and keeping Global.asax only with the first line.
-
0
votes1
answer510
viewsQ: Global.asax file does not load
I have a project in Webforms and wanted to make routes in it. I followed an answer that they gave me in another topic and everything worked very well, but now I went to create another project and it…
-
0
votes1
answer186
viewsQ: Dropdownlist does not work within Detailsview
I have a DetailsView with several fields and a DropDownList that should update the field sexoAnimal with Male (M) or Female (F). I added a ControlParameter in the SqlDataSource, the parameter takes…
-
3
votes3
answers9419
viewsQ: How to use the Dropdownlist Selectedvalue value?
Next, I have a table "animals" with field "sex" (varchar(1)). In it I Seto M or F, for Male or Female. Use detailsView to show/edit these fields and would like to have a Dropdownlist in Edittemplate…
-
3
votes2
answers1169
viewsQ: Save form data in session
I created an access form for my administrative area, using a tutorial by Microsoft. Now I need to retrieve the login that he typed to enter and show it on an administration page, and also to make…
-
3
votes2
answers2181
viewsQ: Pass Javascript data to C#method
I need to get a user’s location, go to C, get his street data and show it on a label. I have the following code: Labels <asp:Label ID="lblMsg" runat="server" Visible="true"></asp:Label>…
-
4
votes3
answers629
viewsQ: Log into page using the bank ID in ASP.NET
I need to make a page that can be accessed in the following format: www.exemplo.com/id/123qwe That one 123qwe is the ID of a database line, where I’ll get all the data to fill out the page. So far…